@xbghc/warden 0.16.2 → 0.16.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -75,6 +75,11 @@ you did not>"`.
75
75
  | `s` | Stage (Unstaged view) or unstage (Staged view) the picked lines |
76
76
  | `Ctrl+Enter` | Save the comment being edited |
77
77
  | `Esc` | Drop the picked lines / cancel editing / cancel re-attach mode / shut the rail / back to the files under review |
78
+ | Click a line number | Open that line in nvim (see [Editor and platform](docs/environment.md)) |
79
+ | `Alt`+click a line number | Copy the place as `src/a.ts:12` — `src/a.ts:12(修改前)` for a line of the old side |
80
+ | `Alt`+`Shift`+click a line number | Copy the range from the line last copied, `src/a.ts:12-18` |
81
+
82
+ The copy button beside the path in the file header copies the path, relative to the repository.
78
83
 
79
84
  ## Documentation
80
85
 
package/dist/cli.js CHANGED
@@ -6310,7 +6310,7 @@ async function runAgentCommand(argv, replyCommand) {
6310
6310
  }
6311
6311
 
6312
6312
  // bin/cli.ts
6313
- var VERSION = true ? "0.16.2" : "dev";
6313
+ var VERSION = true ? "0.16.3" : "dev";
6314
6314
  function parseArgs(argv) {
6315
6315
  const args = { repoPath: process.cwd(), open: true, updateCheck: true, help: false, version: false };
6316
6316
  for (let i = 0; i < argv.length; i++) {