From 2afb23928e1984d475cc460e1672e8f6fa0e4dbe Mon Sep 17 00:00:00 2001 From: Marshall Lochbaum Date: Wed, 11 Aug 2021 17:21:31 -0400 Subject: Allow clicking on header to get fragment link --- docs/editors/index.html | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'docs/editors/index.html') diff --git a/docs/editors/index.html b/docs/editors/index.html index 882525c6..a787eeeb 100644 --- a/docs/editors/index.html +++ b/docs/editors/index.html @@ -4,7 +4,7 @@ BQN: Editor support -

Editor support

+

Editor support

Editor plugins and other tools for allowing BQN input are in this folder. Input is always performed with a backslash \ prefix by default, using the layout shown here. To type an actual backslash, hit the backslash key twice.

This bookmarklet enables BQN input in any webpage in your browser.

@@ -12,29 +12,29 @@

For Android, this fork adds APL and BQN to Hacker's Keyboard.

The file inputrc can be copied or appended to ~/.inputrc to enable backslash input in bash, BQN with rlwrap, and other software that uses GNU Readline.

If you'd like to contribute files for another editor I'd gladly accept them!

-

System-wide

-

XKB (Unix)

+

System-wide

+

XKB (Unix)

The file bqn is for configuring XKB on Linux, or other systems using X11. To use, copy it to /usr/share/X11/xkb/symbols/, then run

$ setxkbmap -layout us,bqn -option grp:switch
 

replacing us with your ordinary keyboard layout. switch indicates the right alt key and can be replaced with lswitch for left alt or other codes. The setting will go away on shutdown so you will probably want to configure it to run every time you start up. The way to do this depends on your desktop environment. For further discussion, see Wikipedia or the APL Wiki.

Another XKB option, if you have a compose key enabled, is to place XCompose (possibly with adjustments) in ~/.XCompose.

-

Windows

+

Windows

Folder autohotkey-win contains an AutoHotKey script and the generated .exe file. It runs as an ordinary program that recognizes BQN key combinations system-wide, using the right alt key (to change this, replace RAlt in the script and rebuild). Move it to the startup folder if you'd like to have it running all the time. You can right-click its icon in the system tray to disable it temporarily.

The XCompose file, although created for XKB, should also be usable with WinCompose (but as far as I know this hasn't been tested).

-

Text editors

-

Vim

+

Text editors

+

Vim

Copy or symlink all files into the corresponding directories in ~/.vim. Add the following two lines to ~/.vim/filetype.vim:

  au! BufRead,BufNewFile *.bqn setf bqn
   au! BufRead,BufNewFile * if getline(1) =~ '^#!.*bqn$' | setf bqn | endif
 

Include syntax on in your .vimrc for syntax highlighting and filetype plugin on for keyboard input.

-

Emacs

+

Emacs

Add the following two lines to init.el (usually ~/.emacs.d/init.el), replacing the path appropriately.

(add-to-list 'load-path "/path/to/BQN/editors/emacs")
 (require 'gnu-apl-mode)
 
-

VS Code

+

VS Code

See this repository.

-

Kakoune

+

Kakoune

Copy or symlink kak/autoload/filetype/bqn.kak into autoload/filetype in your Kakoune config directory (probably .config/kak/).

-- cgit v1.2.3