text
stringlengths
24
1.04M
metadata
stringlengths
233
497
### File: src/nvim/memfile_defs.h #pragma once #include <stdbool.h> #include <stdint.h> #include <stdlib.h> #include "nvim/map_defs.h" /// A block number. /// /// Blocks numbered from 0 upwards have been assigned a place in the actual /// file. The block number is equal to the page number in the file. The blocks ///...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/memfile_defs.h", "license": "mit", "size": 2502}
### File: src/nvim/memline.c // for debugging // #define CHECK(c, s) do { if (c) emsg(s); } while (0) #define CHECK(c, s) do {} while (0) // memline.c: Contains the functions for appending, deleting and changing the // text lines. The memfile functions are used to store the information in // blocks of memory, backed u...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/memline.c", "license": "mit", "size": 140469}
### File: src/nvim/memline.h #pragma once #include "nvim/ascii_defs.h" #include "nvim/eval/typval_defs.h" // IWYU pragma: keep #include "nvim/memline_defs.h" // IWYU pragma: keep #include "nvim/pos_defs.h" // IWYU pragma: keep #include "nvim/types_defs.h" // IWYU pragma: keep #ifdef INCLUDE_GENERATED_DECLARATIONS...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/memline.h", "license": "mit", "size": 426}
### File: src/nvim/memline_defs.h #pragma once #include "nvim/memfile_defs.h" #include "nvim/pos_defs.h" /// /// When searching for a specific line, we remember what blocks in the tree /// are the branches leading to that block. This is stored in ml_stack. Each /// entry is a pointer to info in a block (may be data ...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/memline_defs.h", "license": "mit", "size": 2853}
### File: src/nvim/memory.c // Various routines dealing with allocation and deallocation of memory. #include <assert.h> #include <inttypes.h> #include <stdbool.h> #include <stdint.h> #include <stdlib.h> #include <string.h> #include <time.h> #include "nvim/api/extmark.h" #include "nvim/api/private/helpers.h" #include ...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/memory.c", "license": "mit", "size": 24848}
### File: src/nvim/memory.h #pragma once #include <stdbool.h> #include <stdint.h> // IWYU pragma: keep #include <time.h> // IWYU pragma: keep #include "auto/config.h" #include "nvim/macros_defs.h" #include "nvim/memory_defs.h" // IWYU pragma: keep /// `malloc()` function signature typedef void *(*MemMalloc)(size_...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/memory.h", "license": "mit", "size": 2035}
### File: src/nvim/memory_defs.h #pragma once #include <stddef.h> typedef struct consumed_blk { struct consumed_blk *prev; } *ArenaMem; typedef struct { char *cur_blk; size_t pos, size; } Arena; #define ARENA_BLOCK_SIZE 4096 // inits an empty arena. #define ARENA_EMPTY { .cur_blk = NULL, .pos = 0, .size = 0 ...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/memory_defs.h", "license": "mit", "size": 289}
### File: src/nvim/menu.c // Code for menus. Used for the GUI and 'wildmenu'. // GUI/Motif support by Robert Webb #include <assert.h> #include <stdbool.h> #include <stdint.h> #include <string.h> #include "nvim/ascii_defs.h" #include "nvim/autocmd.h" #include "nvim/autocmd_defs.h" #include "nvim/buffer_defs.h" #inclu...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/menu.c", "license": "mit", "size": 53391}
### File: src/nvim/menu.h #pragma once #include "nvim/cmdexpand_defs.h" // IWYU pragma: keep #include "nvim/ex_cmds_defs.h" // IWYU pragma: keep #include "nvim/menu_defs.h" // IWYU pragma: keep #include "nvim/types_defs.h" // IWYU pragma: keep #ifdef INCLUDE_GENERATED_DECLARATIONS # include "menu.h.generated.h" #...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/menu.h", "license": "mit", "size": 300}
### File: src/nvim/menu_defs.h #pragma once #include <stdbool.h> /// Indices into vimmenu_T->strings[] and vimmenu_T->noremap[] for each mode /// \addtogroup MENU_INDEX /// @{ enum { MENU_INDEX_INVALID = -1, MENU_INDEX_NORMAL = 0, MENU_INDEX_VISUAL = 1, MENU_INDEX_SELECT = 2, MENU_INDEX_OP_PE...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/menu_defs.h", "license": "mit", "size": 2186}
### File: src/nvim/message.c // message.c: functions for displaying messages on the command line #include <assert.h> #include <inttypes.h> #include <stdarg.h> #include <stdbool.h> #include <stddef.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <uv.h> #include "klib/kvec.h" #include "nvim/api/p...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/message.c", "license": "mit", "size": 105183}
### File: src/nvim/message.h #pragma once #include <errno.h> #include <stdbool.h> #include <stddef.h> // IWYU pragma: keep #include "nvim/ex_cmds_defs.h" // IWYU pragma: keep #include "nvim/grid_defs.h" #include "nvim/macros_defs.h" #include "nvim/message_defs.h" // IWYU pragma: keep /// Types of dialogs passed t...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/message.h", "license": "mit", "size": 2041}
### File: src/nvim/message_defs.h #pragma once #include <stdbool.h> #include "nvim/api/private/defs.h" typedef struct { String text; int attr; } HlMessageChunk; typedef kvec_t(HlMessageChunk) HlMessage; /// Message history for `:messages` typedef struct msg_hist { struct msg_hist *next; ///< Next message. ...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/message_defs.h", "license": "mit", "size": 564}
### File: src/nvim/mouse.c #include <assert.h> #include <stdbool.h> #include <stdint.h> #include <stdlib.h> #include <string.h> #include "nvim/ascii_defs.h" #include "nvim/buffer.h" #include "nvim/buffer_defs.h" #include "nvim/charset.h" #include "nvim/cursor.h" #include "nvim/drawscreen.h" #include "nvim/edit.h" #inc...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/mouse.c", "license": "mit", "size": 61581}
### File: src/nvim/mouse.h #pragma once #include "nvim/eval/typval_defs.h" // IWYU pragma: keep #include "nvim/normal_defs.h" // IWYU pragma: keep #include "nvim/types_defs.h" // IWYU pragma: keep #include "nvim/vim_defs.h" // IWYU pragma: keep /// jump_to_mouse() returns one of first five these values, possibly ...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/mouse.h", "license": "mit", "size": 1803}
### File: src/nvim/move.c // move.c: Functions for moving the cursor and scrolling text. // // There are two ways to move the cursor: // 1. Move the cursor directly, the text is scrolled to keep the cursor in the // window. // 2. Scroll the text, the cursor is moved into the text visible in the // window. // The ...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/move.c", "license": "mit", "size": 82127}
### File: src/nvim/move.h #pragma once #include "nvim/eval/typval_defs.h" // IWYU pragma: keep #include "nvim/types_defs.h" // IWYU pragma: keep #include "nvim/vim_defs.h" // IWYU pragma: keep #ifdef INCLUDE_GENERATED_DECLARATIONS # include "move.h.generated.h" #endif
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/move.h", "license": "mit", "size": 248}
### File: src/nvim/msgpack_rpc/channel.c #include <assert.h> #include <inttypes.h> #include <msgpack/object.h> #include <msgpack/sbuffer.h> #include <msgpack/unpack.h> #include <stdbool.h> #include <stdio.h> #include <stdlib.h> #include "klib/kvec.h" #include "nvim/api/private/defs.h" #include "nvim/api/private/dispat...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/msgpack_rpc/channel.c", "license": "mit", "size": 19860}
### File: src/nvim/msgpack_rpc/channel.h #pragma once #include <stdint.h> // IWYU pragma: keep #include "nvim/api/private/defs.h" // IWYU pragma: keep #include "nvim/event/defs.h" #include "nvim/macros_defs.h" #include "nvim/memory_defs.h" // IWYU pragma: keep #include "nvim/msgpack_rpc/channel_defs.h" // IWYU pr...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/msgpack_rpc/channel.h", "license": "mit", "size": 692}
### File: src/nvim/msgpack_rpc/channel_defs.h #pragma once #include <msgpack.h> #include <stdbool.h> #include <uv.h> #include "nvim/api/private/dispatch.h" #include "nvim/map_defs.h" typedef struct Channel Channel; typedef struct Unpacker Unpacker; typedef enum { kClientTypeUnknown = -1, kClientTypeRemote = 0, ...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/msgpack_rpc/channel_defs.h", "license": "mit", "size": 886}
### File: src/nvim/msgpack_rpc/packer.c #include <assert.h> #include "nvim/api/private/defs.h" #include "nvim/lua/executor.h" #include "nvim/msgpack_rpc/packer.h" #ifdef INCLUDE_GENERATED_DECLARATIONS # include "msgpack_rpc/packer.c.generated.h" #endif void mpack_check_buffer(PackerBuffer *packer) { if (mpack_rema...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/msgpack_rpc/packer.c", "license": "mit", "size": 8443}
### File: src/nvim/msgpack_rpc/packer.h #pragma once #include <stdbool.h> #include <stddef.h> #include <stdint.h> #include <string.h> #include "nvim/api/private/defs.h" #include "nvim/msgpack_rpc/packer_defs.h" #define mpack_w(b, byte) *(*(b))++ = (char)(byte); static inline void mpack_w2(char **b, uint32_t v) { *...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/msgpack_rpc/packer.h", "license": "mit", "size": 1707}
### File: src/nvim/msgpack_rpc/packer_defs.h #pragma once #include <stddef.h> #include <stdint.h> // Max possible length: bytecode + 8 int/float bytes // Ext objects are maximum 8=3+5 (nested uint32 payload) #define MPACK_ITEM_SIZE 9 typedef struct packer_buffer_t PackerBuffer; // Must ensure at least MPACK_ITEM_SI...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/msgpack_rpc/packer_defs.h", "license": "mit", "size": 561}
### File: src/nvim/msgpack_rpc/server.c #include <inttypes.h> #include <stdbool.h> #include <stdio.h> #include <string.h> #include <uv.h> #include "nvim/ascii_defs.h" #include "nvim/channel.h" #include "nvim/eval.h" #include "nvim/event/defs.h" #include "nvim/event/socket.h" #include "nvim/garray.h" #include "nvim/gar...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/msgpack_rpc/server.c", "license": "mit", "size": 7207}
### File: src/nvim/msgpack_rpc/server.h #pragma once #include <stddef.h> // IWYU pragma: keep #ifdef INCLUDE_GENERATED_DECLARATIONS # include "msgpack_rpc/server.h.generated.h" #endif
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/msgpack_rpc/server.h", "license": "mit", "size": 147}
### File: src/nvim/msgpack_rpc/unpacker.c #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include "klib/kvec.h" #include "mpack/conv.h" #include "nvim/api/private/helpers.h" #include "nvim/ascii_defs.h" #include "nvim/grid.h" #include "nvim/macros_defs.h" #include "nvim/memory.h" #include "nvim/msgpack_r...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/msgpack_rpc/unpacker.c", "license": "mit", "size": 13808}
### File: src/nvim/msgpack_rpc/unpacker.h #pragma once #include <inttypes.h> #include <string.h> #include "mpack/mpack_core.h" #include "mpack/object.h" #include "nvim/api/private/defs.h" #include "nvim/api/private/dispatch.h" #include "nvim/grid_defs.h" #include "nvim/memory_defs.h" #include "nvim/msgpack_rpc/channe...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/msgpack_rpc/unpacker.h", "license": "mit", "size": 1101}
### File: src/nvim/normal.c // // normal.c: Contains the main routine for processing characters in command // mode. Communicates closely with the code in ops.c to handle // the operators. // #include <assert.h> #include <ctype.h> #include <inttypes.h> #include <limits.h> #include <stdbool...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/normal.c", "license": "mit", "size": 199067}
### File: src/nvim/normal.h #pragma once #include <stddef.h> // IWYU pragma: keep #include "nvim/macros_defs.h" #include "nvim/normal_defs.h" // IWYU pragma: keep #include "nvim/pos_defs.h" // IWYU pragma: keep #include "nvim/types_defs.h" // IWYU pragma: keep /// Values for find_ident_under_cursor() enum { FI...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/normal.h", "license": "mit", "size": 622}
### File: src/nvim/normal_defs.h #pragma once #include <stdbool.h> #include "nvim/pos_defs.h" /// Motion types, used for operators and for yank/delete registers. /// /// The three valid numerical values must not be changed, as they /// are used in external communication and serialization. typedef enum { kMTCharWis...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/normal_defs.h", "license": "mit", "size": 3125}
### File: src/nvim/ops.c // ops.c: implementation of various operators: op_shift, op_delete, op_tilde, // op_change, op_yank, do_put, do_join #include <assert.h> #include <ctype.h> #include <inttypes.h> #include <limits.h> #include <stdbool.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include ...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/ops.c", "license": "mit", "size": 214682}
### File: src/nvim/ops.h #pragma once #include <stdbool.h> #include <stddef.h> #include "nvim/ascii_defs.h" #include "nvim/eval/typval_defs.h" #include "nvim/ex_cmds_defs.h" // IWYU pragma: keep #include "nvim/extmark_defs.h" // IWYU pragma: keep #include "nvim/macros_defs.h" #include "nvim/normal_defs.h" #include ...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/ops.h", "license": "mit", "size": 6233}
### File: src/nvim/option.c // User-settable options. Checklist for adding a new option: // - Put it in options.lua // - For a global option: Add a variable for it in option_vars.h. // - For a buffer or window local option: // - Add a variable to the window or buffer struct in buffer_defs.h. // - For a window optio...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/option.c", "license": "mit", "size": 195549}
### File: src/nvim/option.h #pragma once #include <stdbool.h> #include <stdint.h> #include <stdio.h> // IWYU pragma: keep #include "nvim/api/private/defs.h" // IWYU pragma: keep #include "nvim/api/private/helpers.h" #include "nvim/cmdexpand_defs.h" // IWYU pragma: keep #include "nvim/eval/typval_defs.h" #include "...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/option.h", "license": "mit", "size": 4705}
### File: src/nvim/option_defs.h #pragma once #include <stdbool.h> #include <stddef.h> #include "nvim/api/private/defs.h" #include "nvim/cmdexpand_defs.h" #include "nvim/regexp_defs.h" #ifdef INCLUDE_GENERATED_DECLARATIONS # include "options_enum.generated.h" #endif /// Option value type. /// These types are also u...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/option_defs.h", "license": "mit", "size": 4424}
### File: src/nvim/option_vars.h #pragma once #include "nvim/macros_defs.h" #include "nvim/os/os_defs.h" #include "nvim/sign_defs.h" #include "nvim/types_defs.h" // option_vars.h: definition of global variables for settable options // Option Flags #define P_ALLOCED 0x01U ///< the option is in allocated m...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/option_vars.h", "license": "mit", "size": 39634}
### File: src/nvim/options.lua --- @class vim.option_meta --- @field full_name string --- @field desc? string --- @field abbreviation? string --- @field alias? string|string[] --- @field short_desc? string|fun(): string --- @field varname? string --- @field pv_name? string --- @field type 'boolean'|'number'|'string' --...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Lua", "repo_name": "minhanghuang/neovim", "path": "src/nvim/options.lua", "license": "mit", "size": 427143}
### File: src/nvim/optionstr.c #include <assert.h> #include <stdbool.h> #include <stdint.h> #include <string.h> #include "nvim/ascii_defs.h" #include "nvim/autocmd.h" #include "nvim/buffer_defs.h" #include "nvim/charset.h" #include "nvim/cmdexpand.h" #include "nvim/cmdexpand_defs.h" #include "nvim/cursor.h" #include "...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/optionstr.c", "license": "mit", "size": 89661}
### File: src/nvim/optionstr.h #pragma once #include <stdint.h> // IWYU pragma: keep #include "nvim/cmdexpand_defs.h" // IWYU pragma: keep #include "nvim/option_defs.h" // IWYU pragma: keep #include "nvim/types_defs.h" // IWYU pragma: keep typedef enum { kFillchars, kListchars, } CharsOption; #ifdef INCLUDE...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/optionstr.h", "license": "mit", "size": 356}
### File: src/nvim/os/dl.c /// Functions for using external native libraries #include <stdbool.h> #include <stddef.h> #include <stdint.h> #include <uv.h> #include "nvim/gettext_defs.h" #include "nvim/memory.h" #include "nvim/message.h" #include "nvim/os/dl.h" /// possible function prototypes that can be called by os...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/os/dl.c", "license": "mit", "size": 2677}
### File: src/nvim/os/dl.h #pragma once #ifdef INCLUDE_GENERATED_DECLARATIONS # include "os/dl.h.generated.h" #endif
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/os/dl.h", "license": "mit", "size": 91}
### File: src/nvim/os/env.c // Environment inspection #include <assert.h> #include <limits.h> #include <stdbool.h> #include <stddef.h> #include <stdint.h> #include <string.h> #include <uv.h> #include "auto/config.h" #include "nvim/ascii_defs.h" #include "nvim/buffer_defs.h" #include "nvim/charset.h" #include "nvim/cm...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/os/env.c", "license": "mit", "size": 35896}
### File: src/nvim/os/fileio.c /// @file fileio.c /// /// Buffered reading/writing to a file. Unlike fileio.c this is not dealing with /// Nvim structures for buffer, with autocommands, etc: just fopen/fread/fwrite /// replacement. #include <assert.h> #include <fcntl.h> #include <stdbool.h> #include <stddef.h> #includ...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/os/fileio.c", "license": "mit", "size": 11835}
### File: src/nvim/os/fileio.h #pragma once #include <stddef.h> // IWYU pragma: keep #include "nvim/memory_defs.h" #include "nvim/os/fileio_defs.h" // IWYU pragma: keep /// file_open() flags typedef enum { kFileReadOnly = 1, ///< Open file read-only. Default. kFileCreate = 2, ///< Create file if it does not ...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/os/fileio.h", "license": "mit", "size": 1560}
### File: src/nvim/os/fileio_defs.h #pragma once #include <stdbool.h> #include <stdint.h> /// Structure used to read from/write to file typedef struct { int fd; ///< File descriptor. Can be -1 if no backing file (file_open_buffer) char *buffer; ///< Read or write buffer. always ARENA_BLOCK_SIZE ...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/os/fileio_defs.h", "license": "mit", "size": 1444}
### File: src/nvim/os/fs.c // fs.c -- filesystem access #include <assert.h> #include <errno.h> #include <fcntl.h> #include <stdbool.h> #include <stddef.h> #include <stdint.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <sys/stat.h> #include <sys/types.h> #include <uv.h> #ifdef MSWIN # include <...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/os/fs.c", "license": "mit", "size": 40017}
### File: src/nvim/os/fs.h #pragma once #include <stddef.h> // IWYU pragma: keep #include <stdint.h> // IWYU pragma: keep #include <stdio.h> // IWYU pragma: keep #include <uv.h> // IWYU pragma: keep #include "nvim/os/fs_defs.h" // IWYU pragma: keep #include "nvim/types_defs.h" // IWYU pragma: keep #ifdef INCLU...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/os/fs.h", "license": "mit", "size": 358}
### File: src/nvim/os/fs_defs.h #pragma once #include <uv.h> /// Struct which encapsulates stat information. typedef struct { uv_stat_t stat; ///< @private } FileInfo; /// Struct which encapsulates inode/dev_id information. typedef struct { uint64_t inode; ///< @private The inode of the file uint64_t dev...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/os/fs_defs.h", "license": "mit", "size": 885}
### File: src/nvim/os/input.c #include <assert.h> #include <stdbool.h> #include <stdint.h> #include <stdio.h> #include <string.h> #include <uv.h> #include "nvim/api/private/defs.h" #include "nvim/ascii_defs.h" #include "nvim/autocmd.h" #include "nvim/autocmd_defs.h" #include "nvim/buffer_defs.h" #include "nvim/event/l...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/os/input.c", "license": "mit", "size": 15971}
### File: src/nvim/os/input.h #pragma once #include <stdbool.h> #include <stdint.h> // IWYU pragma: keep #include "nvim/api/private/defs.h" // IWYU pragma: keep #include "nvim/event/defs.h" // IWYU pragma: keep #include "nvim/macros_defs.h" EXTERN bool used_stdin INIT( = false); #ifdef INCLUDE_GENERATED_DECLARAT...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/os/input.h", "license": "mit", "size": 337}
### File: src/nvim/os/lang.c #ifdef __APPLE__ # define Boolean CFBoolean // Avoid conflict with API's Boolean # define FileInfo CSFileInfo // Avoid conflict with API's Fileinfo # include <CoreServices/CoreServices.h> # undef Boolean # undef FileInfo #endif #include <locale.h> #include <stdbool.h> #include <stdio.h>...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/os/lang.c", "license": "mit", "size": 9445}
### File: src/nvim/os/lang.h #pragma once #include "nvim/cmdexpand_defs.h" // IWYU pragma: keep #include "nvim/ex_cmds_defs.h" // IWYU pragma: keep #include "nvim/types_defs.h" // IWYU pragma: keep #ifdef INCLUDE_GENERATED_DECLARATIONS # include "os/lang.h.generated.h" #endif
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/os/lang.h", "license": "mit", "size": 253}
### File: src/nvim/os/mem.c /// Functions for accessing system memory information. #include <stdint.h> #include <uv.h> #include "nvim/os/os.h" /// Get the total system physical memory in KiB. uint64_t os_get_total_mem_kib(void) { // Convert bytes to KiB. return uv_get_total_memory() / 1024; }
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/os/mem.c", "license": "mit", "size": 273}
### File: src/nvim/os/os.h #pragma once #include <stddef.h> #include <stdint.h> #include <uv.h> #include "nvim/cmdexpand_defs.h" #include "nvim/garray_defs.h" #include "nvim/os/os_defs.h" #include "nvim/os/stdpaths_defs.h" #include "nvim/types_defs.h" extern char *default_vim_dir; extern char *default_vimruntime_dir...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/os/os.h", "license": "mit", "size": 629}
### File: src/nvim/os/os_defs.h #pragma once #include <ctype.h> #include <stdio.h> #include <stdlib.h> #include <sys/stat.h> #include <sys/types.h> #include "auto/config.h" // Note: Some systems need both string.h and strings.h (Savage). #include <string.h> #ifdef HAVE_STRINGS_H # include <strings.h> // IWYU pragma...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/os/os_defs.h", "license": "mit", "size": 3212}
### File: src/nvim/os/os_win_console.c #include <string.h> #include "nvim/globals.h" #include "nvim/memory.h" #include "nvim/os/fs.h" #include "nvim/os/input.h" #include "nvim/os/os.h" #include "nvim/os/os_win_console.h" #ifdef INCLUDE_GENERATED_DECLARATIONS # include "os/os_win_console.c.generated.h" #endif static ...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/os/os_win_console.c", "license": "mit", "size": 4206}
### File: src/nvim/os/os_win_console.h #pragma once #ifdef INCLUDE_GENERATED_DECLARATIONS # include "os/os_win_console.h.generated.h" #endif #ifndef ENABLE_VIRTUAL_TERMINAL_INPUT # define ENABLE_VIRTUAL_TERMINAL_INPUT 0x0200 #endif
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/os/os_win_console.h", "license": "mit", "size": 195}
### File: src/nvim/os/process.c /// OS process functions /// /// psutil is a good reference for cross-platform syscall voodoo: /// https://github.com/giampaolo/psutil/tree/master/psutil/arch // IWYU pragma: no_include <sys/param.h> #include <assert.h> #include <signal.h> #include <stdbool.h> #include <stddef.h> #incl...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/os/process.c", "license": "mit", "size": 7240}
### File: src/nvim/os/process.h #pragma once #include <stddef.h> // IWYU pragma: keep #ifdef MSWIN # include "nvim/api/private/defs.h" // IWYU pragma: keep #endif #ifdef INCLUDE_GENERATED_DECLARATIONS # include "os/process.h.generated.h" #endif
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/os/process.h", "license": "mit", "size": 218}
### File: src/nvim/os/pty_conpty_win.c #include <uv.h> #include "nvim/log.h" #include "nvim/os/os.h" #include "nvim/os/pty_conpty_win.h" #include "nvim/vim_defs.h" #ifndef EXTENDED_STARTUPINFO_PRESENT # define EXTENDED_STARTUPINFO_PRESENT 0x00080000 #endif #ifndef PROC_THREAD_ATTRIBUTE_PSEUDOCONSOLE # define PROC_THR...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/os/pty_conpty_win.c", "license": "mit", "size": 6096}
### File: src/nvim/os/pty_conpty_win.h #pragma once #include "klib/kvec.h" #include "nvim/os/input.h" #ifndef HPCON # define HPCON VOID * #endif extern HRESULT(WINAPI *pCreatePseudoConsole) (COORD, HANDLE, HANDLE, DWORD, HPCON *); extern HRESULT(WINAPI *pResizePseudoConsole)(HPCON, COORD); extern void(WINAPI *pClo...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/os/pty_conpty_win.h", "license": "mit", "size": 470}
### File: src/nvim/os/pty_process.h #pragma once #ifdef MSWIN # include "nvim/os/pty_process_win.h" #else # include "nvim/os/pty_process_unix.h" #endif
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/os/pty_process.h", "license": "mit", "size": 117}
### File: src/nvim/os/pty_process_unix.c // Some of the code came from pangoterm and libuv #include <assert.h> #include <errno.h> #include <fcntl.h> #include <signal.h> #include <stdlib.h> #include <string.h> #include <sys/ioctl.h> #include <sys/wait.h> #include <uv.h> // forkpty is not in POSIX, so headers are platf...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/os/pty_process_unix.c", "license": "mit", "size": 9793}
### File: src/nvim/os/pty_process_unix.h #pragma once // IWYU pragma: private, include "nvim/os/pty_process.h" #include <stdint.h> #include <sys/ioctl.h> #include "nvim/event/defs.h" typedef struct { Process process; uint16_t width, height; struct winsize winsize; int tty_fd; } PtyProcess; #ifdef INCLUDE_GE...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/os/pty_process_unix.h", "license": "mit", "size": 353}
### File: src/nvim/os/pty_process_win.c #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include "nvim/ascii_defs.h" #include "nvim/eval/typval.h" #include "nvim/event/loop.h" #include "nvim/log.h" #include "nvim/mbyte.h" #include "nvim/memory.h" #include "nvim/os/os.h" #include "nvim/os/pty_conpty_win.h"...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/os/pty_process_win.c", "license": "mit", "size": 11562}
### File: src/nvim/os/pty_process_win.h #pragma once // IWYU pragma: private, include "nvim/os/pty_process.h" #include <uv.h> #include "nvim/event/process.h" #include "nvim/lib/queue_defs.h" #include "nvim/os/pty_conpty_win.h" typedef struct pty_process { Process process; uint16_t width, height; conpty_t *conp...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/os/pty_process_win.h", "license": "mit", "size": 614}
### File: src/nvim/os/shell.c #include <assert.h> #include <stdbool.h> #include <stdint.h> #include <stdio.h> #include <string.h> #include <uv.h> #include "auto/config.h" #include "klib/kvec.h" #include "nvim/ascii_defs.h" #include "nvim/buffer_defs.h" #include "nvim/charset.h" #include "nvim/errors.h" #include "nvim/...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/os/shell.c", "license": "mit", "size": 39590}
### File: src/nvim/os/shell.h #pragma once #include <stddef.h> // IWYU pragma: keep // Flags for os_call_shell() second argument typedef enum { kShellOptFilter = 1, ///< filtering text kShellOptExpand = 2, ///< expanding wildcards kShellOptDoOut = 4, ///< redirecting output kShellOptSilent = 8, ...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/os/shell.h", "license": "mit", "size": 629}
### File: src/nvim/os/signal.c #include <assert.h> #include <stdbool.h> #include <stdio.h> #ifndef MSWIN # include <signal.h> #endif #include "nvim/autocmd.h" #include "nvim/autocmd_defs.h" #include "nvim/buffer_defs.h" #include "nvim/eval.h" #include "nvim/event/defs.h" #include "nvim/event/signal.h" #include "nvim/...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/os/signal.c", "license": "mit", "size": 4656}
### File: src/nvim/os/signal.h #pragma once #ifdef INCLUDE_GENERATED_DECLARATIONS # include "os/signal.h.generated.h" #endif
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/os/signal.h", "license": "mit", "size": 95}
### File: src/nvim/os/stdpaths.c #include <assert.h> #include <stdbool.h> #include <string.h> #include "klib/kvec.h" #include "nvim/ascii_defs.h" #include "nvim/fileio.h" #include "nvim/globals.h" #include "nvim/memory.h" #include "nvim/os/os.h" #include "nvim/os/os_defs.h" #include "nvim/os/stdpaths_defs.h" #include ...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/os/stdpaths.c", "license": "mit", "size": 8096}
### File: src/nvim/os/stdpaths_defs.h #pragma once /// List of possible XDG variables typedef enum { kXDGNone = -1, kXDGConfigHome, ///< XDG_CONFIG_HOME kXDGDataHome, ///< XDG_DATA_HOME kXDGCacheHome, ///< XDG_CACHE_HOME kXDGStateHome, ///< XDG_STATE_HOME kXDGRuntimeDir, ///< XDG_RUNTIME_DIR kXD...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/os/stdpaths_defs.h", "license": "mit", "size": 369}
### File: src/nvim/os/time.c #include <inttypes.h> #include <limits.h> #include <stdbool.h> #include <string.h> #include <time.h> #include <uv.h> #include "auto/config.h" #include "nvim/event/loop.h" #include "nvim/event/multiqueue.h" #include "nvim/gettext_defs.h" #include "nvim/globals.h" #include "nvim/log.h" #inc...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/os/time.c", "license": "mit", "size": 6238}
### File: src/nvim/os/time.h #pragma once #include <stddef.h> // IWYU pragma: keep #include <time.h> // IWYU pragma: keep #include "nvim/os/time_defs.h" // IWYU pragma: keep #ifdef INCLUDE_GENERATED_DECLARATIONS # include "os/time.h.generated.h" #endif
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/os/time.h", "license": "mit", "size": 230}
### File: src/nvim/os/time_defs.h #pragma once #include <stdint.h> typedef uint64_t Timestamp;
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/os/time_defs.h", "license": "mit", "size": 62}
### File: src/nvim/os/unix_defs.h #pragma once // IWYU pragma: private, include "nvim/os/os_defs.h" // IWYU pragma: begin_exports #include <arpa/inet.h> #include <netdb.h> #include <netinet/in.h> #include <pthread.h> #include <sys/param.h> #include <sys/socket.h> #include <unistd.h> #if defined(HAVE_TERMIOS_H) # inclu...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/os/unix_defs.h", "license": "mit", "size": 667}
### File: src/nvim/os/users.c // users.c -- operating system user information #include <stdbool.h> #include <stdio.h> #include <string.h> #include <uv.h> #include "auto/config.h" #include "nvim/ascii_defs.h" #include "nvim/cmdexpand_defs.h" #include "nvim/garray.h" #include "nvim/garray_defs.h" #include "nvim/memory....
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/os/users.c", "license": "mit", "size": 5535}
### File: src/nvim/os/win_defs.h #pragma once // IWYU pragma: private, include "nvim/os/os_defs.h" #ifndef MSWIN # error Header must be included only when compiling for Windows. #endif // winsock2.h must be first to avoid incompatibilities // with winsock.h (included by windows.h) // uncrustify:off #include <winsock...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/os/win_defs.h", "license": "mit", "size": 1846}
### File: src/nvim/path.c #include <assert.h> #include <limits.h> #include <stdbool.h> #include <stddef.h> #include <stdint.h> #include <stdlib.h> #include <string.h> #include "auto/config.h" #include "nvim/ascii_defs.h" #include "nvim/buffer_defs.h" #include "nvim/charset.h" #include "nvim/cmdexpand.h" #include "nvim...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/path.c", "license": "mit", "size": 72455}
### File: src/nvim/path.h #pragma once #include <stddef.h> // IWYU pragma: keep #include "nvim/garray_defs.h" // IWYU pragma: keep #include "nvim/types_defs.h" // IWYU pragma: keep /// Flags for expand_wildcards() enum { EW_DIR = 0x01, ///< include directory names EW_FILE = 0x02, ///< inc...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/path.h", "license": "mit", "size": 2083}
### File: src/nvim/plines.c // plines.c: calculate the vertical and horizontal size of text in a window #include <limits.h> #include <stdbool.h> #include <stdint.h> #include <string.h> #include "nvim/api/extmark.h" #include "nvim/ascii_defs.h" #include "nvim/buffer.h" #include "nvim/buffer_defs.h" #include "nvim/char...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/plines.c", "license": "mit", "size": 29470}
### File: src/nvim/plines.h #pragma once #include <stdbool.h> #include <stdint.h> #include "nvim/marktree_defs.h" #include "nvim/pos_defs.h" #include "nvim/types_defs.h" typedef bool CSType; enum { kCharsizeRegular, kCharsizeFast, }; /// Argument for char size functions. typedef struct { win_T *win; char *...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/plines.h", "license": "mit", "size": 2961}
### File: src/nvim/po/CMakeLists.txt find_package(Gettext REQUIRED) find_program(XGETTEXT_PRG xgettext) find_program(ICONV_PRG iconv) mark_as_advanced( GETTEXT_MSGFMT_EXECUTABLE GETTEXT_MSGMERGE_EXECUTABLE ICONV_PRG XGETTEXT_PRG) option(ENABLE_LANGUAGES "Localizations to build" ON) if(ENABLE_LANGUAGES) set(L...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "CMake", "repo_name": "minhanghuang/neovim", "path": "src/nvim/po/CMakeLists.txt", "license": "mit", "size": 5335}
### File: src/nvim/po/check.vim " Vim script for checking .po files. " " Go through the file and verify that: " - All %...s items in "msgid" are identical to the ones in "msgstr". " - An error or warning code in "msgid" matches the one in "msgstr". if 1 " Only execute this if the eval feature is available. " using li...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Vim Script", "repo_name": "minhanghuang/neovim", "path": "src/nvim/po/check.vim", "license": "mit", "size": 6827}
### File: src/nvim/po/cleanup.vim " Vim script to cleanup a .po file: " - Remove line numbers (avoids that diffs are messy). " - Comment-out fuzzy and empty messages. " - Make sure there is a space before the string (required for Solaris). " Requires Vim 6.0 or later (because of multi-line search patterns). " Disable ...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Vim Script", "repo_name": "minhanghuang/neovim", "path": "src/nvim/po/cleanup.vim", "license": "mit", "size": 891}
### File: src/nvim/po/fixfilenames.vim " Invoked with the name "vim.pot" and a list of Vim script names. " Converts them to a .js file, stripping comments, so that xgettext works. set shortmess+=A for name in argv()[1:] let jsname = fnamemodify(name, ":t:r") .. ".js" exe "%s+" .. jsname .. "+" .. substitute(name,...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Vim Script", "repo_name": "minhanghuang/neovim", "path": "src/nvim/po/fixfilenames.vim", "license": "mit", "size": 329}
### File: src/nvim/po/tojavascript.vim " Invoked with the name "vim.pot" and a list of Vim script names. " Converts them to a .js file, stripping comments, so that xgettext works. " Javascript is used because, like Vim, it accepts both single and double " quoted strings. set shortmess+=A for name in argv()[1:] exe ...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Vim Script", "repo_name": "minhanghuang/neovim", "path": "src/nvim/po/tojavascript.vim", "license": "mit", "size": 459}
### File: src/nvim/popupmenu.c /// @file popupmenu.c /// /// Popup menu (PUM) #include <assert.h> #include <stdbool.h> #include <string.h> #include "nvim/api/buffer.h" #include "nvim/api/private/defs.h" #include "nvim/api/private/helpers.h" #include "nvim/api/vim.h" #include "nvim/ascii_defs.h" #include "nvim/autocmd...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/popupmenu.c", "license": "mit", "size": 44999}
### File: src/nvim/popupmenu.h #pragma once #include <stdbool.h> #include "nvim/eval/typval_defs.h" // IWYU pragma: keep #include "nvim/grid_defs.h" #include "nvim/macros_defs.h" #include "nvim/menu_defs.h" // IWYU pragma: keep #include "nvim/types_defs.h" // IWYU pragma: keep /// Used for popup menu items. typed...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/popupmenu.h", "license": "mit", "size": 874}
### File: src/nvim/pos_defs.h #pragma once #include <inttypes.h> /// Line number type typedef int32_t linenr_T; /// Format used to print values which have linenr_T type #define PRIdLINENR PRId32 /// Column number type typedef int colnr_T; /// Format used to print values which have colnr_T type #define PRIdCOLNR "d" ...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/pos_defs.h", "license": "mit", "size": 997}
### File: src/nvim/profile.c #include <assert.h> #include <math.h> #include <stdbool.h> #include <stdint.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include "nvim/ascii_defs.h" #include "nvim/charset.h" #include "nvim/cmdexpand_defs.h" #include "nvim/debugger.h" #include "nvim/errors.h" #include "nv...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/profile.c", "license": "mit", "size": 28505}
### File: src/nvim/profile.h #pragma once #include <stdint.h> // IWYU pragma: keep #include <time.h> #include "nvim/cmdexpand_defs.h" // IWYU pragma: keep #include "nvim/ex_cmds_defs.h" // IWYU pragma: keep #include "nvim/runtime_defs.h" // IWYU pragma: keep #define TIME_MSG(s) do { \ if (time_fd != NULL) time...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/profile.h", "license": "mit", "size": 400}
### File: src/nvim/quickfix.c // quickfix.c: functions for quickfix mode, using a file with error messages #include <assert.h> #include <errno.h> #include <inttypes.h> #include <limits.h> #include <stdbool.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <time.h> #include "nvim/arglist.h" #inclu...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/quickfix.c", "license": "mit", "size": 218175}
### File: src/nvim/quickfix.h #pragma once #include "nvim/buffer_defs.h" // IWYU pragma: keep #include "nvim/eval/typval_defs.h" // IWYU pragma: keep #include "nvim/ex_cmds_defs.h" // IWYU pragma: keep #include "nvim/option_defs.h" // IWYU pragma: keep #include "nvim/pos_defs.h" // IWYU pragma: keep #include "nvi...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/quickfix.h", "license": "mit", "size": 507}
### File: src/nvim/regexp.c // Handling of regular expressions: vim_regcomp(), vim_regexec(), vim_regsub() // By default: do not create debugging logs or files related to regular // expressions, even when compiling with -DDEBUG. // Uncomment the second line to get the regexp debugging. // #undef REGEXP_DEBUG // #defin...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/regexp.c", "license": "mit", "size": 452849}
### File: src/nvim/regexp.h #pragma once #include "nvim/eval/typval_defs.h" // IWYU pragma: keep #include "nvim/pos_defs.h" // IWYU pragma: keep #include "nvim/regexp_defs.h" // IWYU pragma: keep #include "nvim/types_defs.h" // IWYU pragma: keep // Second argument for vim_regcomp(). #define RE_MAGIC 1 ...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/regexp.h", "license": "mit", "size": 852}
### File: src/nvim/regexp_defs.h // NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE // // This is NOT the original regular expression code as written by Henry // Spencer. This code has been modified specifically for use with Vim, and // should not be used apart from compiling Vim. If you want a ...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/regexp_defs.h", "license": "mit", "size": 2798}
### File: src/nvim/runtime.c /// @file runtime.c /// /// Management of runtime files (including packages) #include <assert.h> #include <errno.h> #include <fcntl.h> #include <inttypes.h> #include <stdbool.h> #include <stddef.h> #include <stdio.h> #include <string.h> #include <uv.h> #include "klib/kvec.h" #include "nvi...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/runtime.c", "license": "mit", "size": 87541}
### File: src/nvim/runtime.h #pragma once #include <stddef.h> // IWYU pragma: keep #include "nvim/api/private/defs.h" // IWYU pragma: keep #include "nvim/cmdexpand_defs.h" // IWYU pragma: keep #include "nvim/eval/typval_defs.h" // IWYU pragma: keep #include "nvim/ex_cmds_defs.h" // IWYU pragma: keep #include "nv...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/runtime.h", "license": "mit", "size": 1914}
### File: src/nvim/runtime_defs.h #pragma once #include <stdbool.h> #include "nvim/autocmd_defs.h" typedef enum { ETYPE_TOP, ///< toplevel ETYPE_SCRIPT, ///< sourcing script, use es_info.sctx ETYPE_UFUNC, ///< user function, use es_info.ufunc ETYPE_AUCMD, ///< autocomand, use es_info.aucmd ...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "C", "repo_name": "minhanghuang/neovim", "path": "src/nvim/runtime_defs.h", "license": "mit", "size": 2621}