Fix delkeys

This commit is contained in:
Alexis Jhon Gaspar 2023-10-14 19:31:09 +08:00
parent 90e78528d8
commit 47e9e5fd5b

View file

@ -95,13 +95,13 @@
* available URLs. This variant also highlights the selected URLs. * available URLs. This variant also highlights the selected URLs.
* https://st.suckless.org/patches/copyurl/ * https://st.suckless.org/patches/copyurl/
*/ */
#define COPYURL_HIGHLIGHT_SELECTED_URLS_PATCH 1 #define COPYURL_HIGHLIGHT_SELECTED_URLS_PATCH 0
/* This patch adds support for CSI escape sequences 22 and 23, which save and /* This patch adds support for CSI escape sequences 22 and 23, which save and
* restores the window title (for instance nvim does this when opening and closing). * restores the window title (for instance nvim does this when opening and closing).
* https://st.suckless.org/patches/csi_22_23/ * https://st.suckless.org/patches/csi_22_23/
*/ */
#define CSI_22_23_PATCH 1 #define CSI_22_23_PATCH 0
/* According to the specification (see link in BLINKING_CURSOR_PATCH) the "Set cursor style /* According to the specification (see link in BLINKING_CURSOR_PATCH) the "Set cursor style
* (DECSCUSR), VT520." escape sequences define both values of 0 and 1 as a blinking block, * (DECSCUSR), VT520." escape sequences define both values of 0 and 1 as a blinking block,
@ -170,7 +170,7 @@
* that are available to GUI applications. * that are available to GUI applications.
* https://st.suckless.org/patches/fix_keyboard_input/ * https://st.suckless.org/patches/fix_keyboard_input/
*/ */
#define FIXKEYBOARDINPUT_PATCH 1 #define FIXKEYBOARDINPUT_PATCH 0
/* This patch allows you to add spare font besides the default. Some glyphs can be not present in /* This patch allows you to add spare font besides the default. Some glyphs can be not present in
* the default font. For this glyphs st uses font-config and try to find them in font cache first. * the default font. For this glyphs st uses font-config and try to find them in font cache first.