Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
f76f9c7d2a | |||
530c997638 | |||
b353028ea5 |
26
docs/cli.md
26
docs/cli.md
@ -71,14 +71,36 @@ There are some limitations to the local CLI compared to the global CLI:
|
||||
|
||||
## `qmk cformat`
|
||||
|
||||
This command formats C code using clang-format. Run it with no arguments to format all core code, or pass filenames on the command line to run it on specific files.
|
||||
This command formats C code using clang-format.
|
||||
|
||||
**Usage**:
|
||||
Run it with no arguments to format all core code that has been changed. Default checks `origin/master` with `git diff`, branch can be changed using `-b <branch_name>`
|
||||
|
||||
Run it with `-a` to format all core code, or pass filenames on the command line to run it on specific files.
|
||||
|
||||
**Usage for specified files**:
|
||||
|
||||
```
|
||||
qmk cformat [file1] [file2] [...] [fileN]
|
||||
```
|
||||
|
||||
**Usage for all core files**:
|
||||
|
||||
```
|
||||
qmk cformat -a
|
||||
```
|
||||
|
||||
**Usage for only changed files against origin/master**:
|
||||
|
||||
```
|
||||
qmk cformat
|
||||
```
|
||||
|
||||
**Usage for only changed files against branch_name**:
|
||||
|
||||
```
|
||||
qmk cformat -b branch_name
|
||||
```
|
||||
|
||||
## `qmk compile`
|
||||
|
||||
This command allows you to compile firmware from any directory. You can compile JSON exports from <https://config.qmk.fm>, compile keymaps in the repo, or compile the keyboard in the current working directory.
|
||||
|
@ -154,6 +154,8 @@ SEND_STRING(".."SS_TAP(X_END));
|
||||
|
||||
There are some functions you may find useful in macro-writing. Keep in mind that while you can write some fairly advanced code within a macro, if your functionality gets too complex you may want to define a custom keycode instead. Macros are meant to be simple.
|
||||
|
||||
?> You can also use the functions described in [Useful function](ref_functions.md) for additional functionality. For example `reset_keyboard()` allows you to reset the keyboard as part of a macro.
|
||||
|
||||
### `record->event.pressed`
|
||||
|
||||
This is a boolean value that can be tested to see if the switch is being pressed or released. An example of this is
|
||||
|
@ -1,16 +1,14 @@
|
||||
"""Format C code according to QMK's style.
|
||||
"""
|
||||
import os
|
||||
import subprocess
|
||||
from shutil import which
|
||||
|
||||
from milc import cli
|
||||
import qmk.path
|
||||
|
||||
|
||||
@cli.argument('files', nargs='*', arg_only=True, help='Filename(s) to format.')
|
||||
@cli.subcommand("Format C code according to QMK's style.")
|
||||
def cformat(cli):
|
||||
"""Format C code according to QMK's style.
|
||||
def cformat_run(files, all_files):
|
||||
"""Spawn clang-format subprocess with proper arguments
|
||||
"""
|
||||
# Determine which version of clang-format to use
|
||||
clang_format = ['clang-format', '-i']
|
||||
@ -19,27 +17,48 @@ def cformat(cli):
|
||||
if which(binary):
|
||||
clang_format[0] = binary
|
||||
break
|
||||
|
||||
# Find the list of files to format
|
||||
if cli.args.files:
|
||||
cli.args.files = [os.path.join(os.environ['ORIG_CWD'], file) for file in cli.args.files]
|
||||
else:
|
||||
ignores = ['tmk_core/protocol/usb_hid', 'quantum/template']
|
||||
for dir in ['drivers', 'quantum', 'tests', 'tmk_core']:
|
||||
for dirpath, dirnames, filenames in os.walk(dir):
|
||||
if any(i in dirpath for i in ignores):
|
||||
dirnames.clear()
|
||||
continue
|
||||
|
||||
for name in filenames:
|
||||
if name.endswith(('.c', '.h', '.cpp')):
|
||||
cli.args.files.append(os.path.join(dirpath, name))
|
||||
|
||||
# Run clang-format on the files we've found
|
||||
try:
|
||||
subprocess.run(clang_format + cli.args.files, check=True)
|
||||
if not files:
|
||||
cli.log.warn('No changes detected. Use "qmk cformat -a" to format all files')
|
||||
return False
|
||||
if files and all_files:
|
||||
cli.log.warning('Filenames passed with -a, only formatting: %s', ','.join(cli.args.files))
|
||||
# 3.6+: Can remove the str casting, python will cast implicitly
|
||||
subprocess.run(clang_format + [str(file) for file in files], check=True)
|
||||
cli.log.info('Successfully formatted the C code.')
|
||||
|
||||
except subprocess.CalledProcessError:
|
||||
cli.log.error('Error formatting C code!')
|
||||
return False
|
||||
|
||||
|
||||
@cli.argument('-a', '--all-files', arg_only=True, action='store_true', help='Format all core files.')
|
||||
@cli.argument('-b', '--base-branch', default='origin/master', help='Branch to compare to diffs to.')
|
||||
@cli.argument('files', nargs='*', arg_only=True, help='Filename(s) to format.')
|
||||
@cli.subcommand("Format C code according to QMK's style.")
|
||||
def cformat(cli):
|
||||
"""Format C code according to QMK's style.
|
||||
"""
|
||||
# Empty array for files
|
||||
files = []
|
||||
# Core directories for formatting
|
||||
core_dirs = ['drivers', 'quantum', 'tests', 'tmk_core']
|
||||
ignores = ['tmk_core/protocol/usb_hid', 'quantum/template']
|
||||
# Find the list of files to format
|
||||
if cli.args.files:
|
||||
files.extend(qmk.path.normpath(file) for file in cli.args.files)
|
||||
# If -a is specified
|
||||
elif cli.args.all_files:
|
||||
all_files = qmk.path.c_source_files(core_dirs)
|
||||
# The following statement checks each file to see if the file path is in the ignored directories.
|
||||
files.extend(file for file in all_files if not any(i in str(file) for i in ignores))
|
||||
# No files specified & no -a flag
|
||||
else:
|
||||
base_args = ['git', 'diff', '--name-only', cli.args.base_branch]
|
||||
out = subprocess.run(base_args + core_dirs, check=True, stdout=subprocess.PIPE)
|
||||
changed_files = filter(None, out.stdout.decode('UTF-8').split('\n'))
|
||||
filtered_files = [qmk.path.normpath(file) for file in changed_files if not any(i in file for i in ignores)]
|
||||
files.extend(file for file in filtered_files if file.exists() and file.suffix in ['.c', '.h', '.cpp'])
|
||||
|
||||
# Run clang-format on the files we've found
|
||||
cformat_run(files, cli.args.all_files)
|
||||
|
@ -68,3 +68,17 @@ def normpath(path):
|
||||
return Path(path)
|
||||
|
||||
return Path(os.environ['ORIG_CWD']) / path
|
||||
|
||||
|
||||
def c_source_files(dir_names):
|
||||
"""Returns a list of all *.c, *.h, and *.cpp files for a given list of directories
|
||||
|
||||
Args:
|
||||
|
||||
dir_names
|
||||
List of directories, relative pathing starts at qmk's cwd
|
||||
"""
|
||||
files = []
|
||||
for dir in dir_names:
|
||||
files.extend(file for file in Path(dir).glob('**/*') if file.suffix in ['.c', '.h', '.cpp'])
|
||||
return files
|
||||
|
@ -7,7 +7,8 @@ def check_subcommand(command, *args):
|
||||
|
||||
|
||||
def test_cformat():
|
||||
assert check_subcommand('cformat', 'tmk_core/common/keyboard.c').returncode == 0
|
||||
result = check_subcommand('cformat', 'quantum/matrix.c')
|
||||
assert result.returncode == 0
|
||||
|
||||
|
||||
def test_compile():
|
||||
|
@ -137,6 +137,24 @@
|
||||
#define X_BRMU X_PAUSE
|
||||
#define X_BRMD X_SCROLLLOCK
|
||||
|
||||
/* Mouse Keys */
|
||||
#define X_MS_U X_MS_UP
|
||||
#define X_MS_D X_MS_DOWN
|
||||
#define X_MS_L X_MS_LEFT
|
||||
#define X_MS_R X_MS_RIGHT
|
||||
#define X_BTN1 X_MS_BTN1
|
||||
#define X_BTN2 X_MS_BTN2
|
||||
#define X_BTN3 X_MS_BTN3
|
||||
#define X_BTN4 X_MS_BTN4
|
||||
#define X_BTN5 X_MS_BTN5
|
||||
#define X_WH_U X_MS_WH_UP
|
||||
#define X_WH_D X_MS_WH_DOWN
|
||||
#define X_WH_L X_MS_WH_LEFT
|
||||
#define X_WH_R X_MS_WH_RIGHT
|
||||
#define X_ACL0 X_MS_ACCEL0
|
||||
#define X_ACL1 X_MS_ACCEL1
|
||||
#define X_ACL2 X_MS_ACCEL2
|
||||
|
||||
/* Keyboard/Keypad Page (0x07) */
|
||||
#define X_A 04
|
||||
#define X_B 05
|
||||
@ -341,6 +359,24 @@
|
||||
#define X_BRIGHTNESS_UP bd
|
||||
#define X_BRIGHTNESS_DOWN be
|
||||
|
||||
/* Mouse Buttons (unallocated range in HID spec) */
|
||||
#define X_MS_UP f0
|
||||
#define X_MS_DOWN f1
|
||||
#define X_MS_LEFT f2
|
||||
#define X_MS_RIGHT f3
|
||||
#define X_MS_BTN1 f4
|
||||
#define X_MS_BTN2 f5
|
||||
#define X_MS_BTN3 f6
|
||||
#define X_MS_BTN4 f7
|
||||
#define X_MS_BTN5 f8
|
||||
#define X_MS_WH_UP f9
|
||||
#define X_MS_WH_DOWN fa
|
||||
#define X_MS_WH_LEFT fb
|
||||
#define X_MS_WH_RIGHT fc
|
||||
#define X_MS_ACCEL0 fd
|
||||
#define X_MS_ACCEL1 fe
|
||||
#define X_MS_ACCEL2 ff
|
||||
|
||||
// Send string macros
|
||||
#define STRINGIZE(z) #z
|
||||
#define ADD_SLASH_X(y) STRINGIZE(\x##y)
|
||||
|
Reference in New Issue
Block a user