Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. If there is no full match for the pattern, or there
  2. are several matches, the "best" match will be used.
  3. A sophisticated algorithm is used to decide which
  4. match is better than another one. These items are
  5. considered in the computation:
  6. - A match with same case is much better than a match
  7. with different case.
  8. - A match that starts after a non-alphanumeric
  9. character is better than a match in the middle of a
  10. word.
  11. - A match at or near the beginning of the tag is
  12. better than a match further on.
  13. - The more alphanumeric characters match, the better.
  14. - The shorter the length of the match, the better.
  15.  
  16. :set helpfile?
  17. helpfile=/usr/share/nvim/runtime/doc/help.txt
  18. :echo $VIMRUNTIME
  19. /usr/share/nvim/runtime
  20. :echo $VIM
  21. /usr/share/nvim
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement