forked from qmk/qmk_firmware
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request qmk#1 from schmidt-x/for_moran
add french symbols and shit
- Loading branch information
Showing
6 changed files
with
169 additions
and
427 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,10 @@ | ||
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ | ||
#include "quantum.h" | ||
#include "keymap.h" | ||
|
||
bool is_accent_layer(void) { | ||
return layer_state_is(_ACCENTS); | ||
or: | ||
return IS_LAYER_ON(_ACCENTS); // which is just an alias | ||
return IS_LAYER_ON(_ACCENTS); | ||
} | ||
|
||
bool is_shift_layer(void) { | ||
return layer_state_is(_SFT_COLEMAK_FR); | ||
or: | ||
return IS_LAYER_ON(_SFT_COLEMAK_FR); // which is just an alias | ||
} | ||
|
||
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ | ||
return IS_LAYER_ON(_SFT_COLEMAK_FR); | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#pragma once | ||
|
||
bool is_accent_layer(void); | ||
bool is_shift_layer(void); |
Oops, something went wrong.