This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "dz60.h" | |
#define MODS_SHIFT_MASK (MOD_BIT(KC_LSHIFT)|MOD_BIT(KC_RSHIFT)) | |
enum custom_keycodes { | |
KX_UMLAUT_A = SAFE_RANGE, | |
KX_UMLAUT_O, | |
KX_UMLAUT_U, | |
KX_UMLAUT_S, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(shiny) | |
ui <- fluidPage( | |
tags$head(includeScript("returnClick.js")), | |
textInput("myText", "", placeholder = "Enter text then hit return", width = "100%"), | |
actionButton("myButton", "Go!"), | |
verbatimTextOutput("textOutput") | |