Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make gf mapping work with SpaceVim #558

Merged
merged 1 commit into from
May 20, 2020
Merged

Conversation

filbranden
Copy link
Contributor

SpaceVim includes a nnoremap gf gf, in order to clobber a mapping it installs for the g prefix, which displays a "guide" for the commands starting with g. (They do the same for the mappings with the z prefix.)

This ends up preventing vim-rails from installing a gf mapping of itself, since it uses a mapcheck() to only install a mapping when either none exists or a mapping it knowingly wants to override is present. But the mapping to itself from SpaceVim prevents that check from succeeding, which in turn prevents vim-rails from installing its own gf mapping.

This affects gf, but not <C-W>f or <C-W>gf which work as expected.

In order to work around this problem, update the pattern used by the mapcheck() checking for the gf mapping to also succeed when the mapped expression matches gf exactly.

Tested on Pos*t.first, confirmed that it works same as <C-W>f would work. Also checked output of :map gf on SpaceVim with vim-rails, which matches the expected:

n  gf           @<SNR>183_:find <Plug><cfile><CR>
n  gf          * gf
n  g             [G]

This issue was originally raised on StackExchange: How to get tpope/vim-rails gf command to work with SpaceVim?

And about the weird mapping of SpaceVim: Why would you use nnoremap gf gf as SpaceVim does?

SpaceVim includes a `nnoremap gf gf`, in order to clobber a mapping it installs
for the `g` prefix, which displays a "guide" for the commands starting with `g`.
(They do the same for the mappings with the `z` prefix.)

https://github.com/SpaceVim/SpaceVim/blob/v1.4.0/autoload/SpaceVim/mapping/g.vim#L98

This ends up preventing vim-rails from installing a `gf` mapping of itself,
since it uses a mapcheck() to only install a mapping when either none exists or
a mapping it knowingly wants to override is present. But the mapping to itself
from SpaceVim prevents that check from succeeding, which in turn prevents
vim-rails from installing its own `gf` mapping.

This affects `gf`, but not `<C-W>f` or `<C-W>gf` which work as expected.

In order to work around this problem, update the pattern used by the mapcheck()
checking for the `gf` mapping to also succeed when the mapped expression matches
`gf` exactly.

Tested on `Pos*t.first`, confirmed that it works same as `<C-W>f` would work.
Also checked output of `:map gf` on SpaceVim with vim-rails, which matches
the expected:

  n  gf           @<SNR>183_:find <Plug><cfile><CR>
  n  gf          * gf
  n  g             [G]
@tpope
Copy link
Owner

tpope commented May 20, 2020

Weird but ok!

@tpope tpope merged commit a13a652 into tpope:master May 20, 2020
@filbranden filbranden deleted the spacevim1 branch May 20, 2020 23:10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants