Compare commits

...

2 Commits

Author SHA1 Message Date
Peter Benjamin
736b293f2d Merge c99604b4ae into 692e359ad9 2024-10-23 16:16:18 -03:00
Peter Benjamin
c99604b4ae feat(terraform): include dash in iskeyword 2024-05-23 11:13:47 -07:00

View File

@@ -9,6 +9,16 @@ if exists('b:did_ftplugin') || v:version < 700 || &compatible
finish
endif
if !has('patch-7.4.1142')
" Include hyphens as keyword characters so that:
" 1. a keyword appearing as part of a longer name doesn't get partially
" highlighted.
" 2. Goto local declaration works correctly (see `:h gd`)
" 3. Tag navigation works correctly (see `:h i_CTRL-X_CTRL-]`)
setlocal iskeyword+=-
let b:undo_ftplugin .= ' iskeyword<'
endif
" Have only kept the terraform versions of these options for backwards
" compatibility.
if get(g:, 'terraform_fold_sections', 0)