Skip to content

Commit

Permalink
[Keymap] z12 zigotica keymap tweaks (qmk#20990)
Browse files Browse the repository at this point in the history
  • Loading branch information
zigotica committed Jun 1, 2023
1 parent 0c9c4a4 commit c805c10
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 23 deletions.
43 changes: 29 additions & 14 deletions keyboards/z12/keymaps/zigotica/keymap.c
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,10 @@ void raw_hid_receive(uint8_t* data, uint8_t length) {

enum custom_keycodes {
VIM_SIF = SAFE_RANGE,
VIM_SIP,
VIM_RIF,
VIM_RIP,
VIM_FORMAT,
VIM_GODEF,
VIM_RENSYM,
VIM_CODEACT,
VIM_NEW
};

Expand All @@ -49,31 +50,45 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
case VIM_SIF:// Search in File
if (record->event.pressed) {
register_code(KC_ESC);
tap_code(KC_SLASH);
tap_code(KC_SPACE);
tap_code(KC_S);
tap_code(KC_C);
} else { // released
unregister_code(KC_ESC);
}
break;
case VIM_SIP:// Search in Project
case VIM_FORMAT:// Autoformat file
if (record->event.pressed) {
register_code(KC_ESC);
SEND_STRING(":Ag ");
tap_code(KC_F9);
} else { // released
unregister_code(KC_ESC);
}
break;
case VIM_RIF:// Replace in File
case VIM_GODEF:// Go to Definition
if (record->event.pressed) {
register_code(KC_ESC);
SEND_STRING(":%s/a/b/g");
tap_code(KC_G);
tap_code(KC_D);
} else { // released
unregister_code(KC_ESC);
}
break;
case VIM_RIP:// Replace in Project
case VIM_CODEACT:// Code actions
if (record->event.pressed) {
register_code(KC_ESC);
SEND_STRING(":cdo %s/a/b/g");
tap_code(KC_SPACE);
tap_code(KC_C);
tap_code(KC_A);
} else { // released
unregister_code(KC_ESC);
}
break;
case VIM_RENSYM:// Rename symbol
if (record->event.pressed) {
register_code(KC_ESC);
tap_code(KC_SPACE);
tap_code(KC_R);
} else { // released
unregister_code(KC_ESC);
}
Expand Down Expand Up @@ -160,15 +175,15 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
* |BUFFER | BROW | VIM | SCROLL|
* |-------+------+------+-------|
* |-------+-------+-------|
* |SRCH FL|REPL FL|NEW BUF|
* |SRCH FL| FORMAT|NEW BUF|
* |-------+-------+-------|
* |SRCH PR|REPL PR| o |
* |REN SYM|GO DEF |CODEACT|
* |-------+-------+-------|
*/
[_VIM] = LAYOUT(
_______, _______,
_______, _______, _______, _______,
VIM_SIF, VIM_RIF, VIM_NEW,
VIM_SIP, VIM_RIP, _______
VIM_SIF, VIM_FORMAT, VIM_NEW,
VIM_RENSYM, VIM_GODEF, VIM_CODEACT
),
};
31 changes: 22 additions & 9 deletions keyboards/z12/keymaps/zigotica/oled.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,23 +17,36 @@ along with this program. If not, see <http:https://www.gnu.org/licenses/>.
#include "zigotica.h"

static void render_status(void) {
oled_write_P(PSTR("z12 v1.0\n"), false);
oled_write_P(PSTR("Layer: "), false);
switch (get_highest_layer(layer_state)) {
case _VIM:
oled_write_P(PSTR("VIM \n\nBUFFER SCROLL"), false);
case _BASE:
oled_write_P(PSTR("Volume Scroll"), false);
oled_write_P(PSTR(" "), false);
oled_write_P(PSTR(" "), false);
oled_write_P(PSTR(" z12 v1.1"), false);
break;
case _FIGMA:
oled_write_P(PSTR("FIGMA \n\nTABS ZOOM"), false);
oled_write_P(PSTR("Tabs Zoom"), false);
oled_write_P(PSTR(" "), false);
oled_write_P(PSTR("ZoomFit Grids Full"), false);
oled_write_P(PSTR("Zoom100 Next Color"), false);
break;
case _BROWSER:
oled_write_P(PSTR("BROWSER \n\nTABS SCROLL"), false);
oled_write_P(PSTR("Tabs Scroll"), false);
oled_write_P(PSTR(" "), false);
oled_write_P(PSTR("Search Fav DevTool"), false);
oled_write_P(PSTR("Zoom100 Mute Read"), false);
break;
case _BASE:
oled_write_P(PSTR("BASE \n\nVOLUME SCROLL"), false);
case _VIM:
oled_write_P(PSTR("Buffer Scroll"), false);
oled_write_P(PSTR(" "), false);
oled_write_P(PSTR("Find-F Format New"), false);
oled_write_P(PSTR("Rename Go-Def Action"), false);
break;
default:
oled_write_P(PSTR("Undef\n"), false);
oled_write_P(PSTR(" "), false);
oled_write_P(PSTR(" "), false);
oled_write_P(PSTR(" "), false);
oled_write_P(PSTR(" "), false);
}
}

Expand Down

0 comments on commit c805c10

Please sign in to comment.