Giter VIP home page Giter VIP logo

vimfiles's Introduction

The vimfiles project is a collection of configuration files for Vim and Neovim
that gather settings, plugins, and documentation to provide a powerful editing
environment with minimal additional tweaking.

See doc/notes.txt for setup and usage details.

vimfiles's People

Contributors

drmikehenry avatar dtshepherd avatar jszakmeister avatar mhaig avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

vimfiles's Issues

Exploit smartness of `gf`

Regarding

vimfiles/vimrc

Line 2794 in c3bd859

nnoremap <expr> gf empty(taglist(expand('<cfile>'))) ?

there might be two files with the same name in different paths, which gf would recognize, but <c-]> not. Therefore, how about first trying gf, then <c-]> like in

nnoremap <silent> gf         :<c-u>call <sid>gf("gf")<cr>
nnoremap <silent> <c-w>f     :<c-u>call <sid>gf("\<lt>c-w>f")<cr>
nnoremap <silent> <c-w>gf    :<c-u>call <sid>gf("\<lt>c-w>gf")<cr>
nmap     <silent> <C-w><C-f> <C-w>f

nnoremap <silent> gF         :<c-u>call <sid>gf("gF")<cr>
nnoremap <silent> <c-w>F     :<c-u>call <sid>gf("\<lt>c-w>F")<cr>
nnoremap <silent> <c-w>gF    :<c-u>call <sid>gf("\<lt>c-w>gF")<cr>

function s:gf(map)
  try
    exe 'normal! ' . a:map
  catch /^Vim\%((\a\+)\)\=:E447/
    try
      if a:map is# "gf" || a:map is# "gF"
        exe 'tjump ' . expand('<cfile>:t')
      elseif a:map is# "\<c-w>f" || a:map is# "\<c-w>F"
        exe 'ptjump ' . expand('<cfile>:t')
      elseif a:map is# "\<c-w>gf" || a:map is# "\<c-w>gF"
        exe 'ptjump ' . expand('<cfile>:t')
      endif
    catch /^Vim\%((\a\+)\)\=:E\%(426\|433\)/
      echo 'Error: neither path nor tag for this file name found!' 
    endtry
  endtry
endfunction 

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.