From 057d27a9d6ef0bb2ee5130704c45b9e9197e7c36 Mon Sep 17 00:00:00 2001 From: "Justin M. Keyes" Date: Sun, 15 Sep 2024 12:20:58 -0700 Subject: 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. --- src/nvim/os/pty_process_unix.h | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 src/nvim/os/pty_process_unix.h (limited to 'src/nvim/os/pty_process_unix.h') diff --git a/src/nvim/os/pty_process_unix.h b/src/nvim/os/pty_process_unix.h deleted file mode 100644 index 1a77ae5fd5..0000000000 --- a/src/nvim/os/pty_process_unix.h +++ /dev/null @@ -1,18 +0,0 @@ -#pragma once -// IWYU pragma: private, include "nvim/os/pty_process.h" - -#include -#include - -#include "nvim/event/defs.h" - -typedef struct { - Process process; - uint16_t width, height; - struct winsize winsize; - int tty_fd; -} PtyProcess; - -#ifdef INCLUDE_GENERATED_DECLARATIONS -# include "os/pty_process_unix.h.generated.h" -#endif -- cgit