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
devices: | |
- input_name: 'AT Translated Set 2 keyboard' | |
output_name: 'AT Translated Set 2 keyboard remapped' | |
remappings: | |
# Fix key right of left shift | |
KEY_102ND: | |
- KEY_GRAVE | |
# more omitted as it doesn't change the issue |
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
(defun my-increment-number-decimal (&optional arg) | |
"Increment the number forward from point by 'arg'." | |
(interactive "p*") | |
(save-excursion | |
(save-match-data | |
(let (inc-by field-width answer) | |
(setq inc-by (if arg arg 1)) | |
(skip-chars-backward "0123456789") | |
(when (re-search-forward "[0-9]+" nil t) | |
(setq field-width (- (match-end 0) (match-beginning 0))) |
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
// ----------------------------------------------------------------------------- | |
// in foo.h | |
#ifndef FOO_H_2011_12_23_INCLUDED | |
#define FOO_H_2011_12_23_INCLUDED | |
class Foo | |
{ | |
friend class FooImpl; |