text
stringlengths
24
1.04M
metadata
stringlengths
233
497
### File: src/nvim/search.c // search.c: code for normal mode searching commands #include <assert.h> #include <inttypes.h> #include <limits.h> #include <stdbool.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include "nvim/ascii_defs.h" #include "nvim/autocmd.h" #include "nvim/autocmd_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/search.c", "license": "mit", "size": 140422}
### File: src/nvim/search.h #pragma once #include <stdbool.h> #include <stdint.h> #include "nvim/eval/typval_defs.h" #include "nvim/normal_defs.h" // IWYU pragma: keep #include "nvim/os/time_defs.h" #include "nvim/pos_defs.h" #include "nvim/regexp_defs.h" // IWYU pragma: keep #include "nvim/types_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/search.h", "license": "mit", "size": 4302}
### File: src/nvim/sha256.c /// @file sha256.c /// /// FIPS-180-2 compliant SHA-256 implementation /// GPL by Christophe Devine, applies to older version. /// Modified for md5deep, in public domain. /// Modified For Vim, Mohsin Ahmed, http://www.cs.albany.edu/~mosh /// Mohsin Ahmed states this work is distributed under...
{"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/sha256.c", "license": "mit", "size": 10581}
### File: src/nvim/sha256.h #pragma once #include <stddef.h> // IWYU pragma: keep #include <stdint.h> #define SHA256_BUFFER_SIZE 64 #define SHA256_SUM_SIZE 32 typedef struct { uint32_t total[2]; uint32_t state[8]; uint8_t buffer[SHA256_BUFFER_SIZE]; } context_sha256_T; #ifdef INCLUDE_GENERATED_DECLARATION...
{"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/sha256.h", "license": "mit", "size": 334}
### File: src/nvim/shada.c #include <assert.h> #include <inttypes.h> #include <msgpack/object.h> #include <msgpack/pack.h> #include <msgpack/sbuffer.h> #include <msgpack/unpack.h> #include <stdbool.h> #include <stddef.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <sys/stat.h> #include <uv.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/shada.c", "license": "mit", "size": 145343}
### File: src/nvim/shada.h #pragma once #include <msgpack.h> // IWYU pragma: keep #include "nvim/api/private/defs.h" /// Flags for shada_read_file and children typedef enum { kShaDaWantInfo = 1, ///< Load non-mark information kShaDaWantMarks = 2, ///< Load local file marks and change list kShaDaFor...
{"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/shada.h", "license": "mit", "size": 566}
### File: src/nvim/sign.c // sign.c: functions for managing with signs #include <assert.h> #include <inttypes.h> #include <stdbool.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include "klib/kvec.h" #include "nvim/api/extmark.h" #include "nvim/api/private/defs.h" #include "nvim/api/private/helpers.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/sign.c", "license": "mit", "size": 44794}
### File: src/nvim/sign.h #pragma once #include "nvim/cmdexpand_defs.h" // IWYU pragma: keep #include "nvim/ex_cmds_defs.h" // IWYU pragma: keep #include "nvim/sign_defs.h" // IWYU pragma: keep #include "nvim/types_defs.h" // IWYU pragma: keep #ifdef INCLUDE_GENERATED_DECLARATIONS # include "sign.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/sign.h", "license": "mit", "size": 300}
### File: src/nvim/sign_defs.h #pragma once #include "nvim/decoration_defs.h" #include "nvim/types_defs.h" /// Sign attributes. Used by the screen refresh routines. typedef struct { schar_T text[SIGN_WIDTH]; int hl_id; } SignTextAttrs; /// Struct to hold the sign properties. typedef struct { char *sn_name; /...
{"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/sign_defs.h", "license": "mit", "size": 938}
### File: src/nvim/spell.c // spell.c: code for spell checking // // See spellfile.c for the Vim spell file format. // // The spell checking mechanism uses a tree (aka trie). Each node in the tree // has a list of bytes that can appear (siblings). For each byte there is a // pointer to the node with the byte that fol...
{"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/spell.c", "license": "mit", "size": 110867}
### File: src/nvim/spell.h #pragma once #include <stdbool.h> #include "nvim/ex_cmds_defs.h" // IWYU pragma: keep #include "nvim/spell_defs.h" // IWYU pragma: keep #include "nvim/vim_defs.h" // IWYU pragma: keep /// First language that is loaded, start of the linked list of loaded languages. extern slang_T *first_...
{"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/spell.h", "license": "mit", "size": 800}
### File: src/nvim/spell_defs.h #pragma once #include <stdbool.h> #include <stdint.h> #include "nvim/buffer_defs.h" enum { /// Assume max. word len is this many bytes. /// Some places assume a word length fits in a byte, thus it can't be above 255. MAXWLEN = 254, }; enum { MAXREGIONS = 8, }; ///< Number of 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/spell_defs.h", "license": "mit", "size": 9493}
### File: src/nvim/spellfile.c // spellfile.c: code for reading and writing spell files. // // See spell.c for information about spell checking. // Vim spell file format: <HEADER> // <SECTIONS> // <LWORDTREE> // <KWORDTREE> // ...
{"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/spellfile.c", "license": "mit", "size": 187616}
### File: src/nvim/spellfile.h #pragma once #include "nvim/ex_cmds_defs.h" // IWYU pragma: keep #include "nvim/spell_defs.h" // IWYU pragma: keep #ifdef INCLUDE_GENERATED_DECLARATIONS # include "spellfile.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/spellfile.h", "license": "mit", "size": 200}
### File: src/nvim/spellsuggest.c // spellsuggest.c: functions for spelling suggestions #include <assert.h> #include <inttypes.h> #include <limits.h> #include <stdbool.h> #include <stddef.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include "nvim/ascii_defs.h" #include "nvim/buffer_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/spellsuggest.c", "license": "mit", "size": 124584}
### File: src/nvim/spellsuggest.h #pragma once #include "nvim/garray_defs.h" // IWYU pragma: keep #ifdef INCLUDE_GENERATED_DECLARATIONS # include "spellsuggest.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/spellsuggest.h", "license": "mit", "size": 151}
### File: src/nvim/state.c #include <stdbool.h> #include <string.h> #include "nvim/ascii_defs.h" #include "nvim/autocmd.h" #include "nvim/autocmd_defs.h" #include "nvim/buffer_defs.h" #include "nvim/drawscreen.h" #include "nvim/eval.h" #include "nvim/eval/typval.h" #include "nvim/eval/typval_defs.h" #include "nvim/eve...
{"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/state.c", "license": "mit", "size": 9389}
### File: src/nvim/state.h #pragma once #include "nvim/state_defs.h" // IWYU pragma: keep #include "nvim/types_defs.h" #ifdef INCLUDE_GENERATED_DECLARATIONS # include "state.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/state.h", "license": "mit", "size": 172}
### File: src/nvim/state_defs.h #pragma once typedef struct vim_state VimState; typedef int (*state_check_callback)(VimState *state); typedef int (*state_execute_callback)(VimState *state, int key); struct vim_state { state_check_callback check; state_execute_callback execute; }; /// Values for State /// /// Th...
{"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/state_defs.h", "license": "mit", "size": 2004}
### File: src/nvim/statusline.c #include <assert.h> #include <inttypes.h> #include <stdbool.h> #include <stddef.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include "nvim/api/private/defs.h" #include "nvim/api/private/helpers.h" #include "nvim/ascii_defs.h" #include "nvim/buffer.h" #include "nvim/buf...
{"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/statusline.c", "license": "mit", "size": 68719}
### File: src/nvim/statusline.h #pragma once #include <stddef.h> #include "nvim/macros_defs.h" #include "nvim/option_defs.h" // IWYU pragma: keep #include "nvim/statusline_defs.h" // IWYU pragma: keep #include "nvim/types_defs.h" // IWYU pragma: keep /// Array defining what should be done when tabline is clicked ...
{"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/statusline.h", "license": "mit", "size": 526}
### File: src/nvim/statusline_defs.h #pragma once #include <stdbool.h> #include "nvim/fold_defs.h" #include "nvim/sign_defs.h" /// Status line click definition typedef struct { enum { kStlClickDisabled = 0, ///< Clicks to this area are ignored. kStlClickTabSwitch, ///< Switch to the given tab. kSt...
{"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/statusline_defs.h", "license": "mit", "size": 1953}
### File: src/nvim/strings.c #include <assert.h> #include <inttypes.h> #include <math.h> #include <stdarg.h> #include <stdbool.h> #include <stddef.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include "auto/config.h" #include "nvim/ascii_defs.h" #include "nvim/assert_defs.h" #include "nvim/charset.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/strings.c", "license": "mit", "size": 89285}
### File: src/nvim/strings.h #pragma once #include <stdarg.h> // IWYU pragma: keep #include <string.h> #include "auto/config.h" #include "klib/kvec.h" #include "nvim/api/private/defs.h" #include "nvim/eval/typval_defs.h" // IWYU pragma: keep #include "nvim/os/os_defs.h" #include "nvim/types_defs.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/strings.h", "license": "mit", "size": 1956}
### File: src/nvim/syntax.c // syntax.c: code for syntax highlighting #include <assert.h> #include <inttypes.h> #include <stdbool.h> #include <stddef.h> #include <stdlib.h> #include <string.h> #include "nvim/ascii_defs.h" #include "nvim/autocmd.h" #include "nvim/autocmd_defs.h" #include "nvim/buffer.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/syntax.c", "license": "mit", "size": 181695}
### File: src/nvim/syntax.h #pragma once #include "nvim/cmdexpand_defs.h" // IWYU pragma: keep #include "nvim/ex_cmds_defs.h" // IWYU pragma: keep #include "nvim/macros_defs.h" #include "nvim/syntax_defs.h" // IWYU pragma: keep #include "nvim/types_defs.h" // IWYU pragma: keep enum { HL_CONTAINED = 0x01, ...
{"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/syntax.h", "license": "mit", "size": 1680}
### File: src/nvim/syntax_defs.h #pragma once #include "nvim/buffer_defs.h" #define SST_MIN_ENTRIES 150 // minimal size for state stack array #define SST_MAX_ENTRIES 1000 // maximal size for state stack array #define SST_FIX_STATES 7 // size of sst_stack[]. #define SST_DIST 16 // normal distance...
{"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/syntax_defs.h", "license": "mit", "size": 2286}
### File: src/nvim/tag.c // Code to handle tags and the tag stack #include <assert.h> #include <ctype.h> #include <inttypes.h> #include <stdbool.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include "nvim/ascii_defs.h" #include "nvim/autocmd.h" #include "nvim/autocmd_defs.h" #include "nvim/buffer.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/tag.c", "license": "mit", "size": 109584}
### File: src/nvim/tag.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/types_defs.h" // IWYU pragma: keep enum { LSIZE = ...
{"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/tag.h", "license": "mit", "size": 1888}
### File: src/nvim/terminal.c // VT220/xterm-like terminal emulator. // Powered by libvterm http://www.leonerd.org.uk/code/libvterm // // libvterm is a pure C99 terminal emulation library with abstract input and // display. This means that the library needs to read data from the master fd // and feed VTerm instances, w...
{"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/terminal.c", "license": "mit", "size": 54545}
### File: src/nvim/terminal.h #pragma once #include <stdbool.h> #include <stddef.h> #include <stdint.h> #include "nvim/api/private/defs.h" // IWYU pragma: keep #include "nvim/types_defs.h" // IWYU pragma: keep typedef void (*terminal_write_cb)(const char *buffer, size_t size, void *data); typedef void (*terminal_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/terminal.h", "license": "mit", "size": 686}
### File: src/nvim/testing.c // testing.c: Support for tests #include <inttypes.h> #include <stdbool.h> #include <stddef.h> #include <stdio.h> #include <string.h> #include "nvim/ascii_defs.h" #include "nvim/errors.h" #include "nvim/eval.h" #include "nvim/eval/encode.h" #include "nvim/eval/typval.h" #include "nvim/eva...
{"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/testing.c", "license": "mit", "size": 22972}
### File: src/nvim/testing.h #pragma once #include "nvim/eval/typval_defs.h" // IWYU pragma: keep #include "nvim/types_defs.h" // IWYU pragma: keep #ifdef INCLUDE_GENERATED_DECLARATIONS # include "testing.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/testing.h", "license": "mit", "size": 202}
### File: src/nvim/textformat.c // textformat.c: text formatting functions #include <stdbool.h> #include <stdint.h> #include <string.h> #include "nvim/ascii_defs.h" #include "nvim/buffer_defs.h" #include "nvim/change.h" #include "nvim/charset.h" #include "nvim/cursor.h" #include "nvim/drawscreen.h" #include "nvim/edi...
{"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/textformat.c", "license": "mit", "size": 36192}
### File: src/nvim/textformat.h #pragma once #include "nvim/normal_defs.h" // IWYU pragma: keep #include "nvim/pos_defs.h" // IWYU pragma: keep #ifdef INCLUDE_GENERATED_DECLARATIONS # include "textformat.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/textformat.h", "license": "mit", "size": 198}
### File: src/nvim/textobject.c // textobject.c: functions for text objects #include <stdbool.h> #include <stdint.h> #include <stdio.h> #include <string.h> #include "nvim/ascii_defs.h" #include "nvim/buffer_defs.h" #include "nvim/cursor.h" #include "nvim/drawscreen.h" #include "nvim/edit.h" #include "nvim/eval/funcs....
{"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/textobject.c", "license": "mit", "size": 49401}
### File: src/nvim/textobject.h #pragma once #include "nvim/normal_defs.h" // IWYU pragma: keep #include "nvim/pos_defs.h" // IWYU pragma: keep #include "nvim/vim_defs.h" // IWYU pragma: keep #ifdef INCLUDE_GENERATED_DECLARATIONS # include "textobject.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/textobject.h", "license": "mit", "size": 247}
### File: src/nvim/tui/input.c #include <assert.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include "klib/kvec.h" #include "nvim/api/private/defs.h" #include "nvim/api/private/helpers.h" #include "nvim/event/loop.h" #include "nvim/event/stream.h" #include "nvim/macros_defs.h" #include "nvim/main.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/tui/input.c", "license": "mit", "size": 24982}
### File: src/nvim/tui/input.h #pragma once #include <stdbool.h> #include <stdint.h> #include <uv.h> #include "nvim/event/defs.h" #include "nvim/tui/input_defs.h" // IWYU pragma: keep #include "nvim/tui/tui_defs.h" #include "nvim/types_defs.h" #include "termkey/termkey.h" typedef enum { kKeyEncodingLegacy, ///< ...
{"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/tui/input.h", "license": "mit", "size": 1239}
### File: src/nvim/tui/input_defs.h #pragma once typedef enum { KITTY_KEY_ESCAPE = 57344, KITTY_KEY_ENTER = 57345, KITTY_KEY_TAB = 57346, KITTY_KEY_BACKSPACE = 57347, KITTY_KEY_INSERT = 57348, KITTY_KEY_DELETE = 57349, K...
{"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/tui/input_defs.h", "license": "mit", "size": 4703}
### File: src/nvim/tui/terminfo.c // Built-in fallback terminfo entries. #include <stdbool.h> #include <string.h> #include <unibilium.h> #include "klib/kvec.h" #include "nvim/api/private/defs.h" #include "nvim/api/private/helpers.h" #include "nvim/ascii_defs.h" #include "nvim/charset.h" #include "nvim/memory.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/tui/terminfo.c", "license": "mit", "size": 8620}
### File: src/nvim/tui/terminfo.h #pragma once #include <unibilium.h> // IWYU pragma: keep #include "nvim/api/private/defs.h" // IWYU pragma: keep #ifdef INCLUDE_GENERATED_DECLARATIONS # include "tui/terminfo.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/tui/terminfo.h", "license": "mit", "size": 202}
### File: src/nvim/tui/tui.c // Terminal UI functions. Invoked (by ui_client.c) on the UI process. #include <assert.h> #include <signal.h> #include <stdbool.h> #include <stdint.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unibilium.h> #include <uv.h> #include "auto/config.h" #include "klib/...
{"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/tui/tui.c", "license": "mit", "size": 89866}
### File: src/nvim/tui/tui.h #pragma once #include "nvim/highlight_defs.h" // IWYU pragma: keep #include "nvim/tui/tui_defs.h" // IWYU pragma: keep #include "nvim/ui_defs.h" // IWYU pragma: keep #ifdef INCLUDE_GENERATED_DECLARATIONS # include "tui/tui.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/tui/tui.h", "license": "mit", "size": 250}
### File: src/nvim/tui/tui_defs.h #pragma once typedef struct TUIData TUIData; typedef enum { kTermModeSynchronizedOutput = 2026, } TermMode; typedef enum { kTermModeNotRecognized = 0, kTermModeSet = 1, kTermModeReset = 2, kTermModePermanentlySet = 3, kTermModePermanentlyReset = 4, } TermModeState;
{"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/tui/tui_defs.h", "license": "mit", "size": 281}
### File: src/nvim/types_defs.h #pragma once #include <stdint.h> // dummy to pass an ACL to a function typedef void *vim_acl_T; // if data[0] is 0xFF, then data[1..4] is a 24-bit index (in machine endianness) // otherwise it must be a UTF-8 string of length maximum 4 (no NUL when n=4) typedef uint32_t schar_T; 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/types_defs.h", "license": "mit", "size": 1612}
### File: src/nvim/ugrid.c #include <assert.h> #include <string.h> #include "nvim/grid.h" #include "nvim/memory.h" #include "nvim/ugrid.h" #ifdef INCLUDE_GENERATED_DECLARATIONS # include "ugrid.c.generated.h" #endif void ugrid_init(UGrid *grid) { grid->cells = NULL; } void ugrid_free(UGrid *grid) { destroy_cell...
{"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/ugrid.c", "license": "mit", "size": 2000}
### File: src/nvim/ugrid.h #pragma once #include "nvim/types_defs.h" typedef struct { schar_T data; sattr_T attr; } UCell; typedef struct { int row, col; int width, height; UCell **cells; } UGrid; #define UGRID_FOREACH_CELL(grid, row, startcol, endcol, code) \ do { \ UCell *row_cells = (grid)->cells...
{"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/ugrid.h", "license": "mit", "size": 543}
### File: src/nvim/ui.c #include <assert.h> #include <limits.h> #include <stdbool.h> #include <stdint.h> #include <stdlib.h> #include <string.h> #include <uv.h> #include "klib/kvec.h" #include "nvim/api/private/helpers.h" #include "nvim/api/private/validate.h" #include "nvim/api/ui.h" #include "nvim/ascii_defs.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/ui.c", "license": "mit", "size": 19500}
### File: src/nvim/ui.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/grid_defs.h" // IWYU pragma: keep #include "nvim/highlight_defs.h" // IWYU pragma: keep #include "nvim/macros_defs.h" #include "nvim/typ...
{"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/ui.h", "license": "mit", "size": 608}
### File: src/nvim/ui_client.c /// Nvim's own UI client, which attaches to a child or remote Nvim server. #include <stdbool.h> #include <stdint.h> #include <stdlib.h> #include "nvim/api/keysets_defs.h" #include "nvim/api/private/defs.h" #include "nvim/api/private/dispatch.h" #include "nvim/api/private/helpers.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/ui_client.c", "license": "mit", "size": 6719}
### File: src/nvim/ui_client.h #pragma once #include <stdbool.h> #include <stddef.h> #include <stdint.h> #include "nvim/grid_defs.h" // IWYU pragma: keep #include "nvim/macros_defs.h" #include "nvim/types_defs.h" #include "nvim/ui_defs.h" // IWYU pragma: keep // Temporary buffer for converting a single grid_line e...
{"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/ui_client.h", "license": "mit", "size": 1284}
### File: src/nvim/ui_compositor.c // Compositor: merge floating grids with the main grid for display in // TUI and non-multigrid UIs. // // Layer-based compositing: https://en.wikipedia.org/wiki/Digital_compositing #include <assert.h> #include <inttypes.h> #include <limits.h> #include <stdbool.h> #include <stdlib.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/ui_compositor.c", "license": "mit", "size": 20680}
### File: src/nvim/ui_compositor.h #pragma once #include "nvim/api/private/defs.h" // IWYU pragma: keep #include "nvim/grid_defs.h" // IWYU pragma: keep #include "nvim/types_defs.h" // IWYU pragma: keep #include "nvim/ui_defs.h" // IWYU pragma: keep #ifdef INCLUDE_GENERATED_DECLARATIONS # include "ui_compositor.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/ui_compositor.h", "license": "mit", "size": 306}
### File: src/nvim/ui_defs.h #pragma once #include <stdbool.h> #include <stddef.h> #include <stdint.h> #include "nvim/api/private/defs.h" #include "nvim/msgpack_rpc/packer_defs.h" /// Keep in sync with ui_ext_names[] in ui.h typedef enum { kUICmdline = 0, kUIPopupmenu, kUITabline, kUIWildmenu, kUIMessages,...
{"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/ui_defs.h", "license": "mit", "size": 2543}
### File: src/nvim/undo.c // undo.c: multi level undo facility // The saved lines are stored in a list of lists (one for each buffer): // // b_u_oldhead------------------------------------------------+ // | // ...
{"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/undo.c", "license": "mit", "size": 97040}
### File: src/nvim/undo.h #pragma once #include "nvim/eval/typval_defs.h" // IWYU pragma: keep #include "nvim/ex_cmds_defs.h" // IWYU pragma: keep #include "nvim/pos_defs.h" // IWYU pragma: keep #include "nvim/types_defs.h" // IWYU pragma: keep #include "nvim/undo_defs.h" // IWYU pragma: keep #ifdef INCLUDE_GENE...
{"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/undo.h", "license": "mit", "size": 351}
### File: src/nvim/undo_defs.h #pragma once #include <time.h> #include "nvim/extmark_defs.h" #include "nvim/mark_defs.h" enum { UNDO_HASH_SIZE = 32, }; ///< Size in bytes of the hash used in the undo file. typedef struct u_header u_header_T; /// Structure to store info about the Visual area. typedef struct { po...
{"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/undo_defs.h", "license": "mit", "size": 2722}
### File: src/nvim/usercmd.c // usercmd.c: User defined command support #include <assert.h> #include <inttypes.h> #include <lauxlib.h> #include <stdbool.h> #include <stdio.h> #include <string.h> #include "auto/config.h" #include "nvim/api/private/helpers.h" #include "nvim/ascii_defs.h" #include "nvim/buffer_defs.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/usercmd.c", "license": "mit", "size": 48220}
### File: src/nvim/usercmd.h #pragma once #include <stddef.h> // IWYU pragma: keep #include <stdint.h> #include "nvim/api/private/defs.h" // IWYU pragma: keep #include "nvim/cmdexpand_defs.h" // IWYU pragma: keep #include "nvim/eval/typval_defs.h" #include "nvim/ex_cmds_defs.h" #include "nvim/garray_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/usercmd.h", "license": "mit", "size": 1309}
### File: src/nvim/version.h #pragma once #include "nvim/api/private/defs.h" // IWYU pragma: keep #include "nvim/ex_cmds_defs.h" // IWYU pragma: keep #include "nvim/macros_defs.h" // defined in version.c extern char *Version; extern char *longVersion; #ifndef NDEBUG extern char *version_cflags; #endif // // Vim ve...
{"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/version.h", "license": "mit", "size": 1014}
### File: src/nvim/vim_defs.h #pragma once // Some defines from the old feature.h #define SESSION_FILE "Session.vim" #define MAX_MSG_HIST_LEN 200 #define SYS_OPTWIN_FILE "$VIMRUNTIME/optwin.vim" #define RUNTIME_DIRNAME "runtime" enum { /// length of a buffer to store a number in ASCII (64 bits binary + NUL) NUMBU...
{"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/vim_defs.h", "license": "mit", "size": 1788}
### File: src/nvim/viml/parser/expressions.c /// Vimscript expression parser // Planned incompatibilities (to be included into vim_diff.txt when this parser // will be an actual part of Vimscript evaluation process): // // 1. Expressions are first fully parsed and only then executed. This means // that while ":ech...
{"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/viml/parser/expressions.c", "license": "mit", "size": 111661}
### File: src/nvim/viml/parser/expressions.h #pragma once #include <stdbool.h> #include <stddef.h> #include <stdint.h> #include "nvim/eval/typval_defs.h" #include "nvim/types_defs.h" #include "nvim/viml/parser/parser_defs.h" // Defines whether to ignore case: // == kCCStrategyUseOption // ==# kCCStrategyMat...
{"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/viml/parser/expressions.h", "license": "mit", "size": 13853}
### File: src/nvim/viml/parser/parser.c #include "nvim/func_attr.h" #include "nvim/mbyte.h" #include "nvim/memory.h" #include "nvim/viml/parser/parser.h" #ifdef INCLUDE_GENERATED_DECLARATIONS # include "viml/parser/parser.c.generated.h" // IWYU pragma: export #endif void parser_simple_get_line(void *cookie, ParserLi...
{"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/viml/parser/parser.c", "license": "mit", "size": 2208}
### File: src/nvim/viml/parser/parser.h #pragma once #include <assert.h> #include <stdbool.h> #include <stddef.h> #include "klib/kvec.h" #include "nvim/mbyte_defs.h" #include "nvim/viml/parser/parser_defs.h" // IWYU pragma: keep #ifdef INCLUDE_GENERATED_DECLARATIONS # include "viml/parser/parser.h.generated.h" # in...
{"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/viml/parser/parser.h", "license": "mit", "size": 2603}
### File: src/nvim/viml/parser/parser_defs.h #pragma once #include <assert.h> #include <stdbool.h> #include <stddef.h> #include "klib/kvec.h" #include "nvim/mbyte_defs.h" /// One parsed line typedef struct { const char *data; ///< Parsed line pointer size_t size; ///< Parsed line size bool allocated; ///< 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/viml/parser/parser_defs.h", "license": "mit", "size": 2020}
### File: src/nvim/vvars.lua local M = {} M.vars = { argv = { type = 'string[]', desc = [=[ The command line arguments Vim was invoked with. This is a list of strings. The first item is the Vim command. See |v:progpath| for the command with full path. ]=], }, char = { desc = [...
{"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/vvars.lua", "license": "mit", "size": 28521}
### File: src/nvim/window.c #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 "klib/kvec.h" #include "nvim/api/private/defs.h" #include "nvim/api/private/helpers.h" #include "nvim/arglist.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/window.c", "license": "mit", "size": 226152}
### File: src/nvim/window.h #pragma once #include <stdbool.h> #include "nvim/buffer_defs.h" // IWYU pragma: keep #include "nvim/garray_defs.h" // IWYU pragma: keep #include "nvim/macros_defs.h" #include "nvim/option_defs.h" // IWYU pragma: keep #include "nvim/types_defs.h" // IWYU pragma: keep /// Values for fil...
{"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/window.h", "license": "mit", "size": 1851}
### File: src/nvim/winfloat.c #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> #include "klib/kvec.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.h" #include "nvim/buffer_defs.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/winfloat.c", "license": "mit", "size": 12021}
### File: src/nvim/winfloat.h #pragma once #include "nvim/api/private/defs.h" // IWYU pragma: keep #include "nvim/buffer_defs.h" // IWYU pragma: keep #include "nvim/macros_defs.h" /// NW -> 0 /// NE -> kFloatAnchorEast /// SW -> kFloatAnchorSouth /// SE -> kFloatAnchorSouth | kFloatAnchorEast EXTERN const char *con...
{"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/winfloat.h", "license": "mit", "size": 430}
### File: src/termkey/driver-csi.c #include "termkey.h" #include "termkey-internal.h" #include <stdio.h> #include <string.h> // There are 64 codes 0x40 - 0x7F static int keyinfo_initialised = 0; static struct keyinfo ss3s[64]; static char ss3_kpalts[64]; typedef struct { TermKey *tk; int saved_string_id; 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/termkey/driver-csi.c", "license": "mit", "size": 20120}
### File: src/termkey/driver-ti.c // we want strdup() #define _XOPEN_SOURCE 600 #include "termkey.h" #include "termkey-internal.h" #ifdef HAVE_UNIBILIUM # include <unibilium.h> #else # include <curses.h> # include <term.h> /* curses.h has just polluted our namespace. We want this back */ # undef buttons #endif #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/termkey/driver-ti.c", "license": "mit", "size": 16099}
### File: src/termkey/termkey-internal.h #ifndef GUARD_TERMKEY_INTERNAL_H_ #define GUARD_TERMKEY_INTERNAL_H_ #define HAVE_TERMIOS #ifdef _WIN32 # undef HAVE_TERMIOS #endif #include "termkey.h" #include <stdint.h> #ifdef HAVE_TERMIOS # include <termios.h> #endif #ifdef _MSC_VER #include <BaseTsd.h> typedef SSIZE_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/termkey/termkey-internal.h", "license": "mit", "size": 2814}
### File: src/termkey/termkey.c #include "termkey.h" #include "termkey-internal.h" #include <ctype.h> #include <errno.h> #ifndef _WIN32 # include <poll.h> # include <unistd.h> # include <strings.h> #else # include <io.h> #endif #include <string.h> #include <stdio.h> #ifdef _MSC_VER # define strcaseeq(a,b) (_stricmp(...
{"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/termkey/termkey.c", "license": "mit", "size": 40279}
### File: src/termkey/termkey.h #ifdef __cplusplus extern "C" { #endif #ifndef GUARD_TERMKEY_H_ #define GUARD_TERMKEY_H_ #include <stdint.h> #include <stdlib.h> #define TERMKEY_VERSION_MAJOR 0 #define TERMKEY_VERSION_MINOR 22 #define TERMKEY_CHECK_VERSION \ termkey_check_version(TERMKEY_VERSION_MAJOR, TERMK...
{"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/termkey/termkey.h", "license": "mit", "size": 7508}
### File: src/xdiff/xdiff.h /* * LibXDiff by Davide Libenzi ( File Differential Library ) * Copyright (C) 2003 Davide Libenzi * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation;...
{"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/xdiff/xdiff.h", "license": "mit", "size": 4003}
### File: src/xdiff/xdiffi.c /* * LibXDiff by Davide Libenzi ( File Differential Library ) * Copyright (C) 2003 Davide Libenzi * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation;...
{"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/xdiff/xdiffi.c", "license": "mit", "size": 28743}
### File: src/xdiff/xdiffi.h /* * LibXDiff by Davide Libenzi ( File Differential Library ) * Copyright (C) 2003 Davide Libenzi * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation...
{"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/xdiff/xdiffi.h", "license": "mit", "size": 1936}
### File: src/xdiff/xemit.c /* * LibXDiff by Davide Libenzi ( File Differential Library ) * Copyright (C) 2003 Davide Libenzi * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; ...
{"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/xdiff/xemit.c", "license": "mit", "size": 8278}
### File: src/xdiff/xemit.h /* * LibXDiff by Davide Libenzi ( File Differential Library ) * Copyright (C) 2003 Davide Libenzi * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation;...
{"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/xdiff/xemit.h", "license": "mit", "size": 1204}
### File: src/xdiff/xhistogram.c /* * Copyright (C) 2010, Google Inc. * and other copyright owners as documented in JGit's IP log. * * This program and the accompanying materials are made available * under the terms of the Eclipse Distribution License v1.0 which * accompanies this distribution, is reproduced belo...
{"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/xdiff/xhistogram.c", "license": "mit", "size": 9639}
### File: src/xdiff/xinclude.h /* * LibXDiff by Davide Libenzi ( File Differential Library ) * Copyright (C) 2003 Davide Libenzi * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundati...
{"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/xdiff/xinclude.h", "license": "mit", "size": 1728}
### File: src/xdiff/xmacros.h /* * LibXDiff by Davide Libenzi ( File Differential Library ) * Copyright (C) 2003 Davide Libenzi * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundatio...
{"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/xdiff/xmacros.h", "license": "mit", "size": 1901}
### File: src/xdiff/xpatience.c /* * LibXDiff by Davide Libenzi ( File Differential Library ) * Copyright (C) 2003-2016 Davide Libenzi, Johannes E. Schindelin * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published ...
{"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/xdiff/xpatience.c", "license": "mit", "size": 10597}
### File: src/xdiff/xprepare.c /* * LibXDiff by Davide Libenzi ( File Differential Library ) * Copyright (C) 2003 Davide Libenzi * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundati...
{"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/xdiff/xprepare.c", "license": "mit", "size": 12242}
### File: src/xdiff/xprepare.h /* * LibXDiff by Davide Libenzi ( File Differential Library ) * Copyright (C) 2003 Davide Libenzi * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundati...
{"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/xdiff/xprepare.h", "license": "mit", "size": 1058}
### File: src/xdiff/xtypes.h /* * LibXDiff by Davide Libenzi ( File Differential Library ) * Copyright (C) 2003 Davide Libenzi * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation...
{"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/xdiff/xtypes.h", "license": "mit", "size": 1529}
### File: src/xdiff/xutils.c /* * LibXDiff by Davide Libenzi ( File Differential Library ) * Copyright (C) 2003 Davide Libenzi * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation;...
{"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/xdiff/xutils.c", "license": "mit", "size": 9887}
### File: src/xdiff/xutils.h /* * LibXDiff by Davide Libenzi ( File Differential Library ) * Copyright (C) 2003 Davide Libenzi * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation...
{"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/xdiff/xutils.h", "license": "mit", "size": 1779}
### File: test/CMakeLists.txt add_subdirectory(functional/fixtures) # compile test programs get_target_property(TEST_INCLUDE_DIRS main_lib INTERFACE_INCLUDE_DIRECTORIES) set(TEST_OPTIONS -D BUILD_DIR=${CMAKE_BINARY_DIR} -D CIRRUS_CI=$ENV{CIRRUS_CI} -D CI_BUILD=${CI_BUILD} -D DEPS_INSTALL_DIR=...
{"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": "test/CMakeLists.txt", "license": "mit", "size": 1477}
### File: test/benchmark/autocmd_spec.lua local n = require('test.functional.testnvim')() local clear = n.clear local exec_lua = n.exec_lua local N = 7500 describe('autocmd perf', function() before_each(function() clear() exec_lua([[ out = {} function start() ts = vim.uv.hrtime() ...
{"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": "test/benchmark/autocmd_spec.lua", "license": "mit", "size": 4047}
### File: test/benchmark/bench_regexp_spec.lua -- Test for benchmarking the RE engine. local n = require('test.functional.testnvim')() local insert, source = n.insert, n.source local clear, command = n.clear, n.command -- Temporary file for gathering benchmarking results for each regexp engine. local result_file = '...
{"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": "test/benchmark/bench_regexp_spec.lua", "license": "mit", "size": 1952}
### File: test/benchmark/deepcopy_spec.lua local N = 20 local function tcall(f, ...) local ts = vim.uv.hrtime() for _ = 1, N do f(...) end return ((vim.uv.hrtime() - ts) / 1000000) / N end local function build_shared(n) local t = {} local a = {} local b = {} local c = {} for _ = 1, n do t[#t...
{"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": "test/benchmark/deepcopy_spec.lua", "license": "mit", "size": 1153}
### File: test/benchmark/extmark_spec.lua local n = require('test.functional.testnvim')() local clear = n.clear local exec_lua = n.exec_lua describe('extmark perf', function() before_each(function() clear() exec_lua([[ out = {} function start() ts = vim.uv.hrtime() end funct...
{"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": "test/benchmark/extmark_spec.lua", "license": "mit", "size": 1094}
### File: test/benchmark/iter_spec.lua local N = 500 local test_table_size = 100000 describe('vim.iter perf', function() local function mean(t) assert(#t > 0) local sum = 0 for _, v in ipairs(t) do sum = sum + v end return sum / #t end local function median(t) local len = #t if...
{"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": "test/benchmark/iter_spec.lua", "license": "mit", "size": 4493}
### File: test/benchmark/preload.lua -- Modules loaded here will not be cleared and reloaded by Busted. -- Busted started doing this to help provide more isolation. See issue #62 -- for more information about this. local n = require('test.functional.testnvim')
{"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": "test/benchmark/preload.lua", "license": "mit", "size": 225}
### File: test/benchmark/screenpos_spec.lua local t = require('test.testutil') local n = require('test.functional.testnvim')() local Screen = require('test.functional.ui.screen') local api = n.api local function rand_utf8(count, seed) math.randomseed(seed) local symbols = { 'i', 'À', 'Ⱡ', '𐀀' } local s = '' ...
{"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": "test/benchmark/screenpos_spec.lua", "license": "mit", "size": 44684}
### File: test/benchmark/treesitter_spec.lua local n = require('test.functional.testnvim')() local clear = n.clear local exec_lua = n.exec_lua describe('treesitter perf', function() setup(function() clear() end) it('can handle large folds', function() n.command 'edit ./src/nvim/eval.c' exec_lua [[ ...
{"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": "test/benchmark/treesitter_spec.lua", "license": "mit", "size": 1007}