feat(browse): add :Jbrowse to open current file on remote (#89)

This commit is contained in:
Nicolas GB
2026-02-22 09:05:13 -08:00
committed by GitHub
parent 19db4e8178
commit 138044c7e3
7 changed files with 467 additions and 42 deletions
+4
View File
@@ -4,6 +4,7 @@ local picker = require("jj.picker")
local editor = require("jj.ui.editor")
local terminal = require("jj.ui.terminal")
local diff = require("jj.diff")
local browse = require("jj.browse")
--- Jujutsu plugin configuration
--- @class jj.Config
@@ -49,7 +50,10 @@ function M.setup(opts)
terminal.setup(opts and opts.terminal or {})
diff.setup(M.config.diff)
-- Register the commands form the different modules
cmd.register_command()
browse.register_command()
diff.register_command()
end
return M