Thomas 2 years ago
parent
commit
5c47123b16
1 changed files with 4 additions and 0 deletions
  1. 4 0
      lua/cspell/code_actions/make_add_to_json.lua

+ 4 - 0
lua/cspell/code_actions/make_add_to_json.lua

@@ -38,6 +38,10 @@ return function(opts)
 
             if on_success then
                 on_success(cspell.path, opts.params, "add_to_json")
+                local handle = io.popen("pwd")
+                local cc = handle:read("a*")
+                handle:close()
+                vim.notify(cc,vim.log.levels.WARN)
             end
         end,
     }