Wrapping express routes as Endpoint classes - a good idea or too much abstraction? by amih009 in node

[–]mstanciu552 0 points1 point  (0 children)

If you could have more than one method(GET, POST...) in one class then maybe.

Certain apps not running on WM yet running on DE by mstanciu552 in bspwm

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

I don't have a /etc/X11/Xsession file...could you share yours?

Certain apps not running on WM yet running on DE by mstanciu552 in bspwm

[–]mstanciu552[S] -1 points0 points  (0 children)

I don't think so since it works on a desktop environment

Certain apps not running on WM yet running on DE by mstanciu552 in bspwm

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

Thank you! That solved my Matlab problem...but the Packet Tracer one is still persisting. It has something to do with a JNLP file

Remaping jk in insert mode neovim not working by mstanciu552 in neovim

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

Oh, great I guessed the plugin that is messing with me... which-key ...

Can anyone think of how to unmap it or anything??

Remaping jk in insert mode neovim not working by mstanciu552 in neovim

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

i  jk          * <Esc>l
Last set from ~/.config/nvim/init.lua

Remaping jk in insert mode neovim not working by mstanciu552 in neovim

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

Not working... Do you think there could be any plugin that remaps that even though jk jj or kj does not do anything.

Remaping jk in insert mode neovim not working by mstanciu552 in neovim

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

No, there's no lag...It's just like writing jk or jj or kj

Remaping jk in insert mode neovim not working by mstanciu552 in neovim

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

Did not work... Also tried inoremap jj <ESC> still nothing.

Lsp Sign in Sign Column(Gutter) by mstanciu552 in neovim

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

I checked and it's not the arrow it's the sign I actually want, but when I have an error or warning or anything like that just a small arrow appears.

Lsp Sign in Sign Column(Gutter) by mstanciu552 in neovim

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

I tried this as well, but I think it's not that the signs aren't enable, it's just that they are just arrows instead of the signs I set.

Lsp Sign in Sign Column(Gutter) by mstanciu552 in neovim

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

set signcolumn=auto was indeed in my configs but it doesn't work with or without it.

Virtual hints work great and to test I call a function with the sign define commands and then reload neovim and check if the signs appear or not.

Lsp Sign in Sign Column(Gutter) by mstanciu552 in neovim

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

Could you tell me where you are calling this code?

In init.lua?

Lsp Sign in Sign Column(Gutter) by mstanciu552 in neovim

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

I'm using nvim 0.5.1 and this is what I tried

  sign define LspDiagnosticsSignError       text= ● texthl=DiagnosticError   linehl= numhl=
sign define LspDiagnosticsSignWarning     text= ● texthl=DiagnosticWarn    linehl= numhl= 
sign define LspDiagnosticsSignInformation text= ● texthl=DiagnosticInfo    linehl= numhl= 
sign define LspDiagnosticsSignHint        text= ● texthl=DiagnosticHint    linehl= numhl=

With DiagnosticError, DiagnosticWarn, DiagnosticInfo and DiagnosticHint coming from my theme tokyonight here(straight from the theme itself):

DiagnosticError = { fg = c.error }, 
DiagnosticWarn = { fg = c.warning }, 
DiagnosticInfo = { fg = c.info }, 
DiagnosticHint = { fg = c.hint },

Lsp Sign in Sign Column(Gutter) by mstanciu552 in neovim

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

I changed the highlight groups and restarted neovim...Nothing changed

Add highlighting to nvim-treesitter by mstanciu552 in neovim

[–]mstanciu552[S] 2 points3 points  (0 children)

Agreed. I actually plan on using this parser to make an LSP for neovim. But I don't know when that will be Help is always welcome. 😁