TinyScheme Auto-Complete
A Sublime Text Auto-Complete plugin for TinyScheme (a dialect of Scheme programming language).
Details
Installs
- Total 875
- Win 724
- Mac 76
- Linux 75
Dec 26 | Dec 25 | Dec 24 | Dec 23 | Dec 22 | Dec 21 | Dec 20 | Dec 19 | Dec 18 | Dec 17 | Dec 16 | Dec 15 | Dec 14 | Dec 13 | Dec 12 | Dec 11 | Dec 10 | Dec 9 | Dec 8 | Dec 7 | Dec 6 | Dec 5 | Dec 4 | Dec 3 | Dec 2 | Dec 1 | Nov 30 | Nov 29 | Nov 28 | Nov 27 | Nov 26 | Nov 25 | Nov 24 | Nov 23 | Nov 22 | Nov 21 | Nov 20 | Nov 19 | Nov 18 | Nov 17 | Nov 16 | Nov 15 | Nov 14 | Nov 13 | Nov 12 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Mac | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 2 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
TinyScheme Auto-Complete for Sublime Text
This auto-complete plugin covers Procedures and other constructs available in TinyScheme programming language. Most procedures are available as One-Liners. However, some procedures do have Block-Form variant available as well. It is upto you, which variant you pick; the API imposes no restrictions. Completion tags have been set up with consistency and ease-of-use in mind. Simply type some letters of a procedure and press Enter
. The full procedure name, together with parentheses and arguments (if any) shall appear at cursor location.
One-Liner Examples
Text Entered | Result |
---|---|
lam |
(lambda (args) expression) |
def |
(define (proc) expression) |
let |
(let ((variable)) expression) |
if |
(if test expression_true expression_false) |
ve |
(vector element_a element_b element_n) |
veq |
(vector? vector) |
ves |
(vector-set! vector index value) |
vet |
(vector->list vector) |
oif |
(open-input-file path_string) |
nts |
(number->string number) |
ste |
(string=? string_a string_b) |
sts |
(string-set! variable index char) |
me |
(member element list) |
pl |
(+ number_a number_b) |
expt |
(expt number_base number_exponent) |
max |
(max number_a number_b number_n) |
cons |
(cons element list) |
apn |
(append list_a list_b) |
nlq |
(null? list) |
zq |
(zero? number) |
Block-Form Examples
dflb
(define proc
(lambda (args)
expressions
)
)
dfb
(define (proc)
expressions
)
letb
(let
(
(variable)
)
expressions
)
ifbb
(if test
(begin
expressions_true
)
(begin
expressions_false
)
)
foeb
(for-each
proc
list
)
Tips
- You need to type only a few letters of a procedure's name. Observe the patterns used in examples.
- In the Auto-Complete popup, you'll come across several entries with embedded
_
character. Please note that the_
character has been added only for better readability. You don't need to type this character. - All Block-Form tags have a
block
suffix attached. It is intended to help you identify which items have Block-Form variant available. - Scheme comes with several predicate procedures. Tags for these procedures have a
Q
suffix attached. Again, it's been done for easy identification and quick access. - You could use
Tab
andShift+Tab
to cycle forward and backward through arguments. - If you accidentally invoke an undesirable completion, performing a simple Undo
ctrl + z
might be a better fix, rather than manually deleting the unwanted bits.
Installation _ via Sublime Package Control
- Open command palette by using the menu command: Tools → Command Palette
- Select:
Package Control: Install Package
- Search for the package name:
TinyScheme Auto-Complete
and pressEnter
- After installation completes, you could start using this plugin straight away; no restart required.
Installation _ Manually
- Download the plugin (or clone this repository).
- After extraction, copy
tinyscheme_autocomplete
folder to Sublime Text's Packages folder. - You can locate this folder from Sublime Text by using the menu command: Preferences → Browse Packages.
- You could start using this plugin straight away; no restart required.
Notes
- The data is based upon TinyScheme 1.41.
- Most dialects of Scheme strive to be at least
R5RS
compliant; TinyScheme is no exception. This means coders/users from other dialects of Scheme (Chez, Racket, etc) could also consider using this plugin in their projects. - This plugin is released under … GNU General Public License (v3).
Feedback & Comments
- Email: civanimal@gmail.com
- Twitter:
civAnimal
Copyright © 2020 civAnimal