| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2023-03-10 | Links to Beacon IDE | Marshall Lochbaum | |
| 2023-01-22 | Use lookahead/lookbehind to avoid some highlighting glitches | Marshall Lochbaum | |
| 2022-12-09 | Allow <> key to type ≤≥ on keyboards that have it | Marshall Lochbaum | |
| 2022-12-03 | BQN Pythonista (iOS) keyboard | Marshall Lochbaum | |
| 2022-11-24 | Mention REPLXX on the editors page | Marshall Lochbaum | |
| 2022-09-18 | Fix Star (⋆) in Autohotkey script and executable | Sylvia | |
| Change Alt + Shift + = key binding from asterisk (U+002A) to star (U+22C6) | |||
| 2022-08-06 | Mention prism.js support in editors README | Marshall Lochbaum | |
| 2022-06-06 | BQN keyboard is included in xkeyboard-config 2.36 | Marshall Lochbaum | |
| 2022-05-26 | editors/remap.bqn: Add Colemak and Workman layouts | B. Wilson | |
| Colemak: https://colemak.com/ Workman: https://workmanlayout.org/ | |||
| 2022-05-25 | Add key remapping script with dvorak support (closes #68) | Marshall Lochbaum | |
| 2022-05-23 | Remove XCompose <;> definition, since <semicolon> also exists | Marshall Lochbaum | |
| 2022-02-16 | Don't highlight tabs as errors | Marshall Lochbaum | |
| 2022-01-01 | Package links for VS Code plugin | Marshall Lochbaum | |
| 2021-12-26 | Clean up editors introduction and macOS section | Marshall Lochbaum | |
| 2021-12-26 | Merge pull request #50 from ashermancinelli/asher/osx-keyboard-docs | Marshall Lochbaum | |
| Update editors docs with Mac instructions | |||
| 2021-12-26 | Update editors readme with Mac instructions | Asher Mancinelli | |
| 2021-12-26 | Add macOS keylayout which uses `\` prefix key | Andrey Popp | |
| This commit adds an alternative macOS keyboard layout `BQN_backslash.keylayout` which uses `\` as the prefix key (or "dead" key as it is called in Ukelele). This layout mimics the input method used in BQN vim plugin. | |||
| 2021-12-24 | Make \ insert a backlash in the Kakoune plugin; fix ≥ | Marshall Lochbaum | |
| 2021-12-20 | Add instructions for enabling a compose key | Marshall Lochbaum | |
| 2021-12-07 | Add link to interactive Neovim plugin to editors page | Marshall Lochbaum | |
| 2021-12-07 | More vim plugin documentation | Marshall Lochbaum | |
| 2021-12-07 | Mention the new vim help file in the editor doc | Marshall Lochbaum | |
| 2021-12-07 | vim: add help file containing keymap | Hannu Hartikainen | |
| 2021-12-06 | fix for opening multiple BQN buffers in kakoune | Sarah Burns | |
| 2021-12-05 | BQN mode entry in order and description from website | Sarah Burns | |
| 2021-11-18 | Update URL of emacs bqn-mode | Anderson Torres | |
| 2021-10-29 | Fix gnu-apl reference in Emacs section (fixes #35) | Marshall Lochbaum | |
| 2021-10-29 | Add ⋈ to Autohotkey script and executable | Razetime | |
| 2021-10-21 | Add ⋈ to keyboards on Z | Marshall Lochbaum | |
| 2021-10-20 | Better underscore handling in numbers, and allow π with exponent | Marshall Lochbaum | |
| 2021-10-20 | correctly highlight numbers containing underscores in editors | Josh Holland | |
| 2021-10-01 | Emacs support moved to external repository | Marshall Lochbaum | |
| 2021-09-30 | Suhr confirms the XCompose file works with WinCompose | Marshall Lochbaum | |
| 2021-09-30 | swap √ and ⋆ | Junyu Zhan | |
| 2021-09-27 | Add ? to editor highlighting | Marshall Lochbaum | |
| 2021-09-26 | emacs/bqn-symbols.el: properly escape brackets | sternenseemann | |
| () and [] are part of elisp syntax, so they should be escaped in character literals (but don't have to). This change fixes a warning I missed previously. | |||
| 2021-09-26 | emacs: use char for the key in bqn--symbols | sternenseemann | |
| This makes sure the assumption that the string only ever contains a single character holds a priori (or otherwise we'll run into a failure at eval time). Not strictly necessary, but a small code improvement? | |||
| 2021-09-26 | emacs/bqn-backslash.el: key-sequence is never a list | sternenseemann | |
| Reflect changes of 46e810ac94dbdccecd1f03e0ce073e2268453c61 for bqn-input in bqn-backslash. | |||
| 2021-09-26 | emacs/bqn-input.el: don't add broken bindings in the BQN mode map | sternenseemann | |
| Using a plain space in emacs key binding syntax can be problematic (especially making users unable to type "s" if the mode map prefix is "s-"). Therefore we must make sure to convert the strings we have in bqn-symbols.el into proper emacs key syntax. Luckily we can use single-key-description to do exactly that. | |||
| 2021-09-26 | emacs/bqn-input.el: key-sequence is never a list | sternenseemann | |
| This is a small refactor removing sort-of-dead code. This of course removes the possibility to define multiple keys for a certain BQN character, but I'm not sure this is an actual use case we need to preserve. | |||
| 2021-09-26 | emacs/bqn-symbols.el: fix mapping for space | sternenseemann | |
| The “key” needs to be the plain ASCII space instead of "SPC". With this change, space works properly for both the BQN-Z input mode and the modifier-based mode-map. Thanks to Leah Neukirchen for pointing this out. | |||
| 2021-09-04 | emacs/bqn-input.el: fix reliance on undefined vars und functions | sternenseemann | |
| bqn--make-bqn-mode-map depended on the value of bqn-mode-map-prefix, but bqn-mode-map-prefix's set function also used bqn--make-bqn-mode-map. To break this cycle which made emacs' warnings act up a bit, we remove bqn--make-bqn-mode-map and defvar bqn--mode-map to nil initially, trusting that it'll be correctly re-defined by the initialization of bqn-mode-map-prefix via its set function. I verified that this works correctly both in the case of the initial value (although I swapped out the value for "M-" beforehand since in my setup Super doesn't seem to work at all) and redefining it using costumize-variable. | |||
| 2021-09-04 | emacs/bqn-input.el: make defcustom docstring max-width happy | sternenseemann | |
| A docstring wider than 80 characters causes a warning when compiling which isn't too much trouble to clean up. | |||
| 2021-09-04 | emacs/bqn-input.el: define bqn--make-key-command-sym at compile time | sternenseemann | |
| When byte compiling bqn--make-key-command-sym wouldn't be defined when it's used in make-insert-functions directly below. This can be fixed by forcing the defun to be evaluated at compile-time using eval-and-compile while still making sure it is also available when loaded normally. | |||
| 2021-08-25 | add vim-plug instructions to editor README | David S. Smith | |
| 2021-08-25 | Change emacs ligature sequence from s- to s-SPC, fixing broken s and ‿ input | Marshall Lochbaum | |
| 2021-08-17 | Document layout | Vincent Carrier | |
| 2021-08-11 | Say that AutoHotKey script uses right alt | Marshall Lochbaum | |
| 2021-08-11 | Instructions for AutoHotKey and other Windows notes | Marshall Lochbaum | |
| 2021-08-11 | Add autohotkey script and executable for glyphs | Razetime | |
