Martin Tournoij
Martin Tournoij
Not sure why this is happening, it should always be added from the defaults here: https://github.com/arp242/gopher.vim/blob/8934106626845fcb06bdd8dbc6a18d657af1c073/autoload/gopher/init.vim#L79 Did you configure `g:gopher_map` in your vimrc file? And which Vim version are you...
Hm, I can't reproduce it by adding that `g:gopher_map` setting; everything seems to work as expected. Which sequence of commands are you using *exactly*? Perhaps I'm doing something different? It...
Ah right; checking for existence before (re-)defining it should work too I think: if !exists('g:gopher_map') let g:gopher_map = [..] endif I can look at making this more predictable; one thing...
Cheers, glad the immediate issue is solved for you. I'll re-open this because it's something I do want to make sure gets fixed. You can unsubscribe if you don't any...
I'm trying to understand your use case, but I'm not sure if I follow exactly what the source of your problem is. I don't understand what you mean with *"use...
Right, I see what you mean now: you have `;a` – which is not a gopher.vim mapping – mapped to something unrelated, and that's needlessly preventing *all* the mappings. Thanks...
The thing is a number of filetypes already define [[ and ]] to jump to functions and the like, but do so in ways that are not exactly identical to...
Maybe it's compressed different? Right now it looks for `.info` and `.info.gz` files, but maybe your system uses some other compression? There isn't really enough information here to say what's...
Maybe; but it looks kinda meh in godoc though, especially with multiple lines on the struct. 
A simple "private" keyword is probably best: ``` // Foo is a bar. // // private: This documentation is private. // And will not be added // to Kommentaar. type...