mirror of
https://github.com/neovim/neovim.git
synced 2026-05-01 03:24:49 +00:00
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.
8 lines
111 B
C
8 lines
111 B
C
#pragma once
|
|
|
|
#ifdef MSWIN
|
|
# include "nvim/os/pty_proc_win.h"
|
|
#else
|
|
# include "nvim/os/pty_proc_unix.h"
|
|
#endif
|