aboutsummaryrefslogtreecommitdiff
path: root/after
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-06-28 10:59:01 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-06-28 10:59:01 +1200
commit186591c1201ffd4f204781a2989e0d7049786d41 (patch)
treecd9173e6be9d539310c53981086be98de7c23dc8 /after
downloadvim-make-target-186591c1201ffd4f204781a2989e0d7049786d41.tar.gz
vim-make-target-186591c1201ffd4f204781a2989e0d7049786d41.zip
First commitv0.1.0
Diffstat (limited to 'after')
-rw-r--r--after/ftplugin/make/target.vim29
1 files changed, 29 insertions, 0 deletions
diff --git a/after/ftplugin/make/target.vim b/after/ftplugin/make/target.vim
new file mode 100644
index 0000000..dc1663a
--- /dev/null
+++ b/after/ftplugin/make/target.vim
@@ -0,0 +1,29 @@
+" make/target.vim: Provide a mapping to :make the target for the recipe under
+" the cursor.
+
+" Don't load if running compatible or too old
+if &compatible || v:version < 700
+ finish
+endif
+
+" Don't load if already loaded
+if exists('b:did_ftplugin_make_target')
+ finish
+endif
+
+" Stop here if the user doesn't want ftplugin mappings
+if exists('g:no_plugin_maps') || exists('g:no_make_maps')
+ finish
+endif
+
+" Flag as loaded
+let b:did_ftplugin_make_target = 1
+let b:undo_ftplugin = b:undo_ftplugin
+ \ . '|unlet b:did_ftplugin_make_target'
+
+" Define normal mode mapping target
+nnoremap <buffer> <silent> <unique>
+ \ <Plug>MakeTarget
+ \ :<C-U>call make#target#Make()<CR>
+let b:undo_ftplugin = b:undo_ftplugin
+ \ . '|nunmap <buffer> <Plug>MakeTarget'