ruifm

Results 19 comments of ruifm

> Or use `mappings` as `false` to remove mappings but `nil` (which equates to not defining a mapping through options) to use the default one? Sounds like the best option....

Good idea, I will look into the best way to implement it. This "prompt in case of multiple remotes" should be guarded behind a config option because I think for...

Hi @roginfarrer , great to hear that! The decision to not provide native vim commands was deliberate. It goes in line with most new lua plugins and their philosophy. The...

Good idea, it seems simple to implement through an option, I will work on it this week together with https://github.com/ruifm/gitlinker.nvim/issues/29 in other to make mapping different actions more manageable.

I personally just have this at the top of my `init.lua`: ```lua vim.g.did_load_filetypes = 1 vim.cmd([[ runtime! ftdetect/*.vim]]) vim.cmd([[runtime! ftdetect/*.lua]]) ``` I know the point of the plugin is to...

@aspiers it's been some time. Will you revert said commit and backport it to the latest stable release?

Thanks @aspiers good to see you back! I didn't plan on jumping the stow ship anytime soon even with this minor inconvenience (which is all it really is).

Should be added to the readme imo.

> Is it possible to use fzy+ripgrep to search inside files? I use it fine using: ```vim nnoremap t :call FzyCommand("rg --files --hidden -g '!.git/*' .", ":tabedit") ```

Add this to `/etc/udev/rules.d/webcam.rules` to create systemd bind devices for `/dev/videoX` system devices. ``` KERNEL=="video0", SYMLINK="video0", TAG+="systemd" KERNEL=="video1", SYMLINK="video1", TAG+="systemd" ``` do it for as much devices as needed. Then,...