aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosh Rahm <joshuarahm@gmail.com>2022-08-22 00:26:23 -0600
committerJosh Rahm <joshuarahm@gmail.com>2022-08-22 00:26:23 -0600
commit9e40b6e9e1bc67f2d856adb837ee64dd0e25b717 (patch)
tree3136d5845a598e196495a6fb4dcd53dcd681d0fb
parent323eef76ee869dab24a925f5df8a7aefac5e3597 (diff)
downloadrneovim-9e40b6e9e1bc67f2d856adb837ee64dd0e25b717.tar.gz
rneovim-9e40b6e9e1bc67f2d856adb837ee64dd0e25b717.tar.bz2
rneovim-9e40b6e9e1bc67f2d856adb837ee64dd0e25b717.zip
feat(usermarks) remove echo statement from usermark.vim
-rw-r--r--runtime/autoload/usermark.vim6
1 files changed, 1 insertions, 5 deletions
diff --git a/runtime/autoload/usermark.vim b/runtime/autoload/usermark.vim
index 02c76d5ffd..b1b4113d1a 100644
--- a/runtime/autoload/usermark.vim
+++ b/runtime/autoload/usermark.vim
@@ -3,9 +3,5 @@
lua vim.usermark = require('vim.usermark')
function! usermark#func(action, mark) abort
- let ret = v:lua.vim.usermark.fn(a:action, a:mark)
-
- echo "Returning: " . string(ret)
-
- return ret
+ return v:lua.vim.usermark.fn(a:action, a:mark)
endfunction