ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Tiny​Scheme Auto-Complete

by civAnimal ALL

A Sublime Text Auto-Complete plugin for TinyScheme (a dialect of Scheme programming language).

Details

Installs

  • Total 854
  • Win 707
  • Mac 73
  • Linux 74
Sep 10 Sep 9 Sep 8 Sep 7 Sep 6 Sep 5 Sep 4 Sep 3 Sep 2 Sep 1 Aug 31 Aug 30 Aug 29 Aug 28 Aug 27 Aug 26 Aug 25 Aug 24 Aug 23 Aug 22 Aug 21 Aug 20 Aug 19 Aug 18 Aug 17 Aug 16 Aug 15 Aug 14 Aug 13 Aug 12 Aug 11 Aug 10 Aug 9 Aug 8 Aug 7 Aug 6 Aug 5 Aug 4 Aug 3 Aug 2 Aug 1 Jul 31 Jul 30 Jul 29 Jul 28
Windows 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 2 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0
Mac 1 0 0 0 0 0 0 0 0 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 1 1 1 0 0 0 0 0 0 1 0
Linux 0 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 and Shift+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: ToolsCommand Palette
  • Select: Package Control: Install Package
  • Search for the package name: TinyScheme Auto-Complete and press Enter
  • 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: PreferencesBrowse 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

Copyright © 2020 civAnimal