We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b505033 commit 36f997bCopy full SHA for 36f997b
src/command.lua
@@ -2,6 +2,7 @@ local state = require('codemp.state')
2
local buffers = require('codemp.buffers')
3
local workspace = require('codemp.workspace')
4
local utils = require('codemp.utils')
5
+local window = require('codemp.window')
6
7
local native = require('codemp.loader').load()
8
@@ -29,7 +30,11 @@ local base_actions = {
29
30
-- only available if state.client is not nil
31
local connected_actions = {
32
id = function()
- print(" ::codemp#" .. state.client.id)
33
+ print("> codemp::" .. state.client.id)
34
+ end,
35
+
36
+ toggle = function()
37
+ window.toggle()
38
end,
39
40
join = function(ws)
0 commit comments