comparison src/vim.h @ 20603:c2570baa2e4c v8.2.0855

patch 8.2.0855: GUI tests fail because the test doesn't use a modifier Commit: https://github.com/vim/vim/commit/ebe9d34aa07037cff2188a8dd424ee1f59cbb0bf Author: Bram Moolenaar <Bram@vim.org> Date: Sat May 30 21:52:54 2020 +0200 patch 8.2.0855: GUI tests fail because the test doesn't use a modifier Problem: GUI tests fail because the test doesn't use a modifier. Solution: Add "\{xxx}" to be able to encode a modifier.
author Bram Moolenaar <Bram@vim.org>
date Sat, 30 May 2020 22:00:04 +0200
parents 4411c2b96af9
children 8bce783af0cb
comparison
equal deleted inserted replaced
20602:67dccb63d65c 20603:c2570baa2e4c
2659 2659
2660 // Flags for expression evaluation. 2660 // Flags for expression evaluation.
2661 #define EVAL_EVALUATE 1 // when missing don't actually evaluate 2661 #define EVAL_EVALUATE 1 // when missing don't actually evaluate
2662 #define EVAL_CONSTANT 2 // when not a constant return FAIL 2662 #define EVAL_CONSTANT 2 // when not a constant return FAIL
2663 2663
2664 // Flags for find_special_key()
2665 #define FSK_KEYCODE 0x01 // prefer key code, e.g. K_DEL instead of DEL
2666 #define FSK_KEEP_X_KEY 0x02 // don't translate xHome to Home key
2667 #define FSK_IN_STRING 0x04 // TRUE in string, double quote is escaped
2668 #define FSK_SIMPLIFY 0x08 // simplify <C-H> and <A-x>
2669 #define FSK_CURLY 0x10 // {C-x} instead of <C-x>
2670
2664 #endif // VIM__H 2671 #endif // VIM__H