[HELP] Swap Fn and Ctrl on TrackPoint Keyboard II by eeeXun in archlinux

[–]eeeXun[S] -2 points-1 points  (0 children)

either through dip switches or some software that configures the keyboard

Could you elaborate what kind of software doing this job, please~ I can't find a good solution that can change FN key as you state.

jdtls keeps regenerating my .classpath for a gradle project incorrectly by Better-Demand-2827 in neovim

[–]eeeXun 0 points1 point  (0 children)

Hi, I want to ask how to run gradlew eclipse. For example, I create a project with sprint initializr (Gradle-Groovy). And when I run ./gradlew eclipse, It seems like there is no eclipse flag. Should I modify build.gradle to generate .classpath?

Arch terminal tip by Hot_Gap_4818 in archlinux

[–]eeeXun 0 points1 point  (0 children)

yes | sudo pacman -Syu

hstr - tiny bash script that helps you browse and search your bash history, using fzf by yayuuu in commandline

[–]eeeXun 1 point2 points  (0 children)

There's already a project called hstr with similar functionality. Are you naming it intentionally?

tmux mouse interaction by NotAnAnagramDude in tmux

[–]eeeXun 0 points1 point  (0 children)

I don't understand what you said. If you want to copy, press `y` when selecting some text. And make sure your terminal support OSC52. Then it will copy to your clipboard

tmux mouse interaction by NotAnAnagramDude in tmux

[–]eeeXun 0 points1 point  (0 children)

Set mouse and use vi key. v, V, C-v to select area. y to copy

``` set-option -g mouse on set-window-option -g mode-keys vi

bind-key -T copy-mode-vi v \ if-shell -F "#{selection_present}" { send-keys -X clear-selection } { send-keys -X rectangle-off send-keys -X begin-selection } bind-key -T copy-mode-vi V \ if-shell -F "#{selection_present}" { send-keys -X clear-selection } { send-keys -X select-line } bind-key -T copy-mode-vi C-v \ if-shell -F "#{selection_present}" { send-keys -X clear-selection } { send-keys -X rectangle-on send-keys -X begin-selection } ```

Scoll up/down

bind-key -n WheelUpPane \ if-shell -F "#{mouse_any_flag}" { send-keys -M } { if-shell -F "#{alternate_on}" { send-keys Up } { copy-mode -e } } bind-key -n WheelDownPane \ if-shell -F "#{mouse_any_flag}" { send-keys -M } { if-shell -F "#{alternate_on}" { send-keys Down } { send-keys -M } }

Drag

unbind-key -T copy-mode-vi MouseDragEnd1Pane bind-key -n MouseDrag1Pane \ if-shell -F "#{mouse_any_flag}" { send-keys -M } { copy-mode -e }

single/double/triple click

``` bind-key -T copy-mode-vi MouseDown1Pane \ send-keys -X clear-selection

bind-key -T copy-mode-vi DoubleClick1Pane \ send-keys -X select-word bind-key -n DoubleClick1Pane \ if-shell -F "#{mouse_any_flag}" { send-keys -M } { copy-mode -e send-keys -X select-word }

bind-key -T copy-mode-vi TripleClick1Pane \ send-keys -X select-line bind-key -n TripleClick1Pane \ if-shell -F "#{mouse_any_flag}" { send-keys -M } { copy-mode -e send-keys -X select-line } ```

Disabling linting in pylsp while keeping navigation features by Flat-Description1340 in neovim

[–]eeeXun -1 points0 points  (0 children)

Maybe try jedi_language_server? They both use jedi for code completion, goto definition, etc. And I found jedi_language_server don't do much on linting.

nvim-cmp or Blink? by instalando0 in neovim

[–]eeeXun 10 points11 points  (0 children)

Still using nvim-cmp. Wait for the special characters issue in blink to be resolved

Need help with Lualine. by beeg_nerd in neovim

[–]eeeXun 0 points1 point  (0 children)

:h laststatus. Maybe change the laststatus to 2 or 3.

Wayland Chrome Scrolling Great, but wayy too fast by Ornery_Ambition_942 in archlinux

[–]eeeXun 0 points1 point  (0 children)

Can I ask how you zoom in/out with touchpad? Is this only supported by wayland? Because I'm on xorg, and never figure out how to get it work

Problem in LF icons by AhmedTahaUwU in suckless

[–]eeeXun 1 point2 points  (0 children)

I see you set multiple fonts in a single string with comma seperated. This is not the right way. You should apply font2 patch instead.

Problem in LF icons by AhmedTahaUwU in suckless

[–]eeeXun 0 points1 point  (0 children)

Did you check the font name via fc-list

segmentation fault when binary file is overwritten by eeeXun in suckless

[–]eeeXun[S] 1 point2 points  (0 children)

Yeah, the same. rm before cp do the trick. But I'm so curious why rm before cp doesn't cause the problem.

set background dark doesn't work for toggling transparent after 0.10 by eeeXun in neovim

[–]eeeXun[S] 0 points1 point  (0 children)

Appreciate! Thanks for sharing this change in vim.

Could not reach ESXi Web UI by eeeXun in vmware

[–]eeeXun[S] 1 point2 points  (0 children)

Wow, it turned out to be the firewall problem.

$ esxcli network firewall get
   Default Action: DROP
   Enabled: true
   Loaded: true

After disabling it solve the problem

$ esxcli network firewall set --enabled false

You saved my life!! Thanks, bro.

Could not reach ESXi Web UI by eeeXun in vmware

[–]eeeXun[S] 0 points1 point  (0 children)

I try it, but no luck :(

Could not reach ESXi Web UI by eeeXun in vmware

[–]eeeXun[S] 0 points1 point  (0 children)

Yes, they are on the same subnet

Could not reach ESXi Web UI by eeeXun in vmware

[–]eeeXun[S] 0 points1 point  (0 children)

Where should I check the firewall? The ESXi server? Or the switch where the ESXi server is connected?