diff options
| author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-08-15 13:54:15 +0200 |
|---|---|---|
| committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-08-15 13:54:15 +0200 |
| commit | 977990584331307dd5e71ebbbbd6b45b9c961996 (patch) | |
| tree | a8b3d78e80f586da192a576dd678e2fbc8ac8e00 /.config/nvim/lua/core/terminal.lua | |
| parent | 99d00f47fe780dbb021149db2f93d202a2b8b025 (diff) | |
Updates to nvim lsp
Diffstat (limited to '.config/nvim/lua/core/terminal.lua')
| -rw-r--r-- | .config/nvim/lua/core/terminal.lua | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.config/nvim/lua/core/terminal.lua b/.config/nvim/lua/core/terminal.lua index 2793da2..ff3f95e 100644 --- a/.config/nvim/lua/core/terminal.lua +++ b/.config/nvim/lua/core/terminal.lua @@ -86,7 +86,11 @@ end M._exec_toggle = function(exec) local binary = M._split(exec)[1] if is_installed(binary) ~= true then - print("Please install executable " .. binary .. ". Check documentation for more information") + print( + "Please install executable " + .. binary + .. ". Check documentation for more information" + ) return end local Terminal = require("toggleterm.terminal").Terminal |