Alex Gorkunov

Results 15 comments of Alex Gorkunov

In other words, when cursor on `include` or `import` but not on filename smartgf should open file instead of search word `include`/`import`. Am I right?

@21croissants Do you use `cursorline` option? Smartgf uses CursorLine style for highlighting selected line. Seems theme that you use has no CursorLine style or this style has no visible indication....

> it displays "x" instead of 10, 11, 12 ... (minor issue) It's not an issue. You can use 1..9 keys for opening files (shortcuts). I place 'x' for all...

@lekv why do you need bell in vim? :)

@Glench could you share what version of vim do you use? My guess that bell sounds produced by some tricky combination of commands that `smartpairs` runs during selection. I'll try...

As temporary solution you can disable bell for vim: ```viml " disable bell sound set noerrorbells set novisualbell set t_vb= if has('autocmd') autocmd! GUIEnter * set vb t_vb= endif ```

Could you share vim version? Do you have any customization for smartpairs bindings?

Could you share list of plugins that you use?

I see now that visual selection Ctrl + V may conflict with smaprtpairs bindings. You can temporary fix this by changing default binding. Add this line to your `.vimrc`: ```...