diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2024-09-15 12:20:58 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-15 12:20:58 -0700 |
| commit | 057d27a9d6ef0bb2ee5130704c45b9e9197e7c36 (patch) | |
| tree | c08b0d80b543cc18dd1dec97dde9885b8a50b375 /test | |
| parent | 5792546777332361a9ac49107e46149c703de90e (diff) | |
| download | rneovim-057d27a9d6ef0bb2ee5130704c45b9e9197e7c36.tar.gz rneovim-057d27a9d6ef0bb2ee5130704c45b9e9197e7c36.tar.bz2 rneovim-057d27a9d6ef0bb2ee5130704c45b9e9197e7c36.zip | |
refactor: rename "process" => "proc" #30387
Problem:
- "process" is often used as a verb (`multiqueue_process_events`), which
is ambiguous for cases where it's used as a topic.
- The documented naming convention for processes is "proc".
- `:help dev-name-common`
- Shorter is better, when it doesn't harm readability or
discoverability.
Solution:
Rename "process" => "proc" in all C symbols and module names.
Diffstat (limited to 'test')
| -rw-r--r-- | test/README.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/README.md b/test/README.md index 45b3322305..1477bc593e 100644 --- a/test/README.md +++ b/test/README.md @@ -103,7 +103,7 @@ Debugging tests DBG 2022-06-15T18:37:45.227 T57.58016.0/c UI: stop INF 2022-06-15T18:37:45.227 T57.58016.0/c os_exit:595: Nvim exit: 0 DBG 2022-06-15T18:37:45.229 T57.58016.0 read_cb:118: closing Stream (0x7fd5d700ea18): EOF (end of file) - INF 2022-06-15T18:37:45.229 T57.58016.0 on_process_exit:400: exited: pid=58017 status=0 stoptime=0 + INF 2022-06-15T18:37:45.229 T57.58016.0 on_proc_exit:400: exited: pid=58017 status=0 stoptime=0 ``` - You can set `$GDB` to [run functional tests under gdbserver](https://github.com/neovim/neovim/pull/1527): |