• Stars
    star
    439
  • Rank 98,655 (Top 2 %)
  • Language
    Rust
  • License
    MIT License
  • Created over 5 years ago
  • Updated about 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Cross Platform Rust Repl

IRust

Cross Platform Rust Repl

You can try out IRust with no installation or setup (via Gitpod.io) by visiting https://gitpod.io/#https://github.com/sigmaSd/IRust

Keywords / Tips & Tricks

:help => print help, use :help full for the full version

:reset => reset repl

:show => show repl current code (optionally depends on rustfmt to format output)

:add <dep_list> => add dependencies (requires cargo-edit) also it accepts most cargo-edit arguments

:type <expression> => shows the expression type, example :type vec!(5)

:time <expression> => return the amount of time the expression took to execute. example: :time 5+4 :time my_fun(arg1,arg2)

:time_release <expression> => same as time command but with release mode

:load => load a rust file into the repl

:reload => reload the last specified file

:pop => remove last repl code line

:del <line_num> => remove a specific line from repl code (line count starts at 1 from the first expression statement)

:edit [editor] => edit internal buffer using an external editor, example: :edit micro. If no editor is specified then the one from the EDITOR environment variable is used (if set). Note some gui terminal requires using :sync command after the edit (vscode)

:sync sync the changes written after using :edit with a gui editor (vscode) to the repl

:cd => change current working directory

:color <key> <value> => change token highlight color at runtime, for the token list and value representation check the Theme section, exp: :color function red :color macro #ff12ab :color reset

:toolchain <value> => switch between toolchains, supported value are: stable, beta, nightly, default

:theme <value> => if used without arguments list currently installed themes, otherwise set irust to the given theme, see Themes section for more info

:check_statements true/false => If its set to true, irust will check each statemnt (input that ends with ;) with cargo_check before inserting it to the repl

:bench => run cargo bench

:asm <function> => shows assembly of the specified function, note that the function needs to be public, and there has to be no free standing statements/expressions (requires cargo-show-asm)

:executor <executor> => set the executor to be used by IRust, available options are: sync tokio async_std, by using an async executor, await becomes usable with no other modifications (requires cargo-edit for async executors)

:evaluator <evaluator>> => set the evaluator statement, exmaple: :evaluator println!("{}",{$$}) the $$ will be replaced by IRust by the input code (the default evaluator uses debug formatting). To reset the evaluator to default you can use :evaluator reset

:scripts: => if invoked with no arguments it prints a list of detected scripts, if invoked with on argument it print that script info if it exits, if invoked with 2 arguments, it tries to activate/deactivate a script, example: :scripts Vim deactivate

:compile_time <on/off> => if set to on, IRust will print compiling time on each input, compile time includes rustc compiling + some IRust code (should be marginal)

:compile_mode <debug/release> => Sets how cargo will compile the code in release or debug mode

:main_result <value> => Change main result type, available options are Unit and Result (which is Result<(), Box<dyn std::error::Error>>), Using Result as type allows to use ? in the repl without any boilerplate

:dbg <expression> => Spawn rust-lldb/rust-gdb with (an optional expression), example: :dbg or :dbg fact(12), The debugger can be specified in the config file

:expand [function] => Shows the result of macro expansion, requires https://github.com/dtolnay/cargo-expand, function is optional, example fn b() { println!("42"); } then :expand b

:exit | :quit => Exit IRust immediately

$$ => Shell commands can be interpolated with rust code with '$$', for example: let a = $$ls -l$$;, this feature can be [en/dis]abled via the config file

:: => run a shell command, example ::ls

You can use arrow keys to cycle through commands history.

You can disable all colors by setting NO_COLOR env variable.

To enable completion with tab via rust-analyzer, set enable_racer to true in the config.

Keybindings

ctrl-l clear screen

ctrl-c clear line

ctrl-d exit if buffer is empty

ctrl-z [unix only] send IRust to the background

ctrl-r search history, hitting ctrl-r again continues searching the history backward, hitting ctrl-s searches the history forward

ctrl-left/right jump through words

HOME/END go to line start / line end

Tab/ShiftTab cycle through auto-completion suggestions

Alt-Enter | ctrl-s add line break

ctrl-e force evaluation

ctrl-o->[+-]key Start recording a macro and saved on the specified key, if ctrl-o is clicked again the recording is stopped

ctrl-p->key Play a macro saved on the specified key

ctrl-u Undo

ctrl-y Redo

ctrl-x Delete current line

Cli commands

--help prints help message

--reset-config reset IRust configuration to default

If input is piped to IRust then it will evaluate it and exit, example: echo '"hello".chars()' | irust

Configuration

IRust config file is located in:

Linux: /home/$USER/.config/irust/config.toml

Win: C:\Users\$USER\AppData\Roaming/irust/config.toml

Mac: /Users/$USER/Library/Preferences/irust/config.toml

default config:

  # history
  add_irust_cmd_to_history = true
  add_shell_cmd_to_history = false

  # colors
  ok_color = "Blue"
  eval_color = "White"
  irust_color = "DarkBlue"
  irust_warn_color = "Cyan"
  out_color = "Red"
  shell_color = "DarkYellow"
  err_color = "DarkRed"
  input_color = "Green"
  insert_color = "White"
  welcome_msg = ""
  welcome_color = "DarkBlue"

  # Rust analyzer
  racer_inline_suggestion_color = "Cyan"
  racer_suggestions_table_color = "Green"
  racer_selected_suggestion_color = "DarkRed"
  racer_max_suggestions = 5
  enable_racer = false

  # other
  first_irust_run = false
  toolchain = "stable"
  check_statements = true
  auto_insert_semicolon = true
  
  #use last output by replacing the specified marker
  replace_marker = "$out"
  replace_output_with_marker = false
  
  # modify input prmopt
  input_prompt = "In: "
  output_prompt = "Out: "
  
  # activate scripting feature
  activate_scripting = false
  
  # select executor (Sync, Tokio, Asyncstd)
  executor = "Sync"
  evaluator = ["println!(\"{:?}\", {\n", "\n});"]
  compile_time = false
  main_result = "Unit"
  show_warnings = false
  edition = "E2021"
  debugger = "LLDB"
  shell_interpolate = true
  local_server = false
  local_server_adress = "127.0.0.1:9000"
  theme = "default"

Theme

Since release 1.66.0 IRust can now parse any theme file located under $config_dir/irust/themes and use it for the highlighting colors.

To select a theme, set its name in the irust config. for example to set themes/mytheme.toml set theme = "mytheme"

Colors can be specified as names ("red") or as hex representation ("#ff12ab").

Default theme file (default.toml):

  keyword = "magenta"
  keyword2 = "dark_red"
  function = "blue"
  type = "cyan"
  symbol = "red"
  macro = "dark_yellow"
  literal = "yellow"
  lifetime = "dark_magenta"
  comment = "dark_grey"
  const = "dark_green"
  ident = "white"

Prelude

IRust automatically creates irust_prelude crate at xdg_data_dir/irust/irust_prelude, this crate is imported at startup, any changes to it (that are marked with pub) will be immediately reflected on the repl after saving.

Scripts

IRust supports scripting, all over the code base there are hooks that scripts can react to and usually answer back to IRust with a command.
Check out SCRIPTS.md for more info.

Vim Plugin

For nvim you can use https://github.com/hkupty/iron.nvim (needs irust 1.67.4)

Old method:

Since version 1.60.0 IRust supports spawning a local server, by changing local_server to true in the configuration file.
This allows it to be controlled programmatically, which in turns allows writing vim plugins that uses this, see https://github.com/sigmaSd/irust-vim-plugin

Jupyter Notebook

Currently there is a barebone kernel that is easily installable see https://github.com/sigmaSd/IRust/blob/master/crates/irust_repl/README.md#jupyter-kernel for instructions

Book

The IRust Book is intended to document a couple of tips and tricks https://sigmasd.github.io/irust_book

Releases

Automatic releases by github actions are uploaded here https://github.com/sigmaSd/irust/releases

Install

Building

cargo b --release

FAQ

Since version 1.70.0 irust uses rust-analyzer instead of racer, the next info is outdated

1- Why is autocompletion not working

-> you need racer installed and configured correctly
    rustup toolchain install nightly
    rustup component add rustc-dev --toolchain=nightly
    cargo +nightly install racer
    rustup component add rust-src

2- Racer fails to build

You can try rustup update --force racer-rust/racer#1141

Also some times the needed toolchain version changes. Usually there is an issue about it in racer repo (and the correct version to use)

3- I want to hack on irust but dbg! overlaps with the output!!

Personaly I do this:

  • Run 2 terminals side by side
  • run tty in the first which should output something like /dev/pts/4
  • run cargo r 2>/dev/pts4 in the second

Now the dbg! statements are printed on the second terminal and the output in the first terminal is not messed up.

Changelog

More Repositories

1

deno-nvim

A plugin to improve deno experience in neovim
Lua
44
star
2

Eltrafico

NetLimiter-like traffic shaping for Linux
Rust
14
star
3

LanChat

LanChat fluter + rust demo
Dart
12
star
4

arabic-reshaper-rs

Reconstruct Arabic sentences to be used in applications that don't support Arabic
Rust
6
star
5

HijriDate-rs

Hijri calander for Rust
Rust
5
star
6

conjure-deno

deno repl support for conjure
Lua
4
star
7

nvim-tailwind

Autocomplete tailwind classes
Lua
4
star
8

repl-rs

Rust repl though with caveat ^^
Rust
4
star
9

Minimize

Replace deno `-A` with the actual used flags
Python
4
star
10

PwaIt

Script to kick start pwa app
JavaScript
3
star
11

freshRadio

https://rodio.deno.dev/
TypeScript
3
star
12

rustman

Cross platfrom package manager
Rust
3
star
13

Runner

Vim plugin to run the current file with custom (typescript) scripts
TypeScript
3
star
14

ytdlf

Simple frontend for youtube-dl
TypeScript
3
star
15

trafficwrap

Rust
2
star
16

term_cam

Stream camera to terminal
Rust
2
star
17

sigmaSd.github.io

Blogging about random stuff https://sigmasd.github.io/
HTML
2
star
18

Rscript

Easily script any rust project https://docs.rs/rscript
Rust
2
star
19

picro

Organize pictures
Python
2
star
20

flutter_gitpod

Example of how to use flutter with gitpod with the ability to build android apks.
Dart
2
star
21

Flag-Classifier

Flag classifier using FastAI (Simple demo)
Jupyter Notebook
2
star
22

Chef

Personal package manager
TypeScript
2
star
23

AndroChat

Rust
2
star
24

chat.nvim

Nvim wrapper over chatgpt free web interface
Lua
1
star
25

fakecargo

fake cargo for single rust files
Rust
1
star
26

Debugger

Simulate python pdb for rust
Rust
1
star
27

jlox

Rust port of jlox http://www.craftinginterpreters.com
Rust
1
star
28

irust-vim-plugin

IRust vim plugin using deno
TypeScript
1
star
29

nim-nvim-basic

Add nim syntax highlighting to nvim via tree sitter
Scheme
1
star
30

nvim-inject

Highlight embedded languages automatically in neovim
Lua
1
star
31

a

TypeScript
1
star
32

nanowave

Search/Listen to Internet radio
Rust
1
star
33

deno-pty-ffi

deno wrapper over rust protable-pty that exposes a simple interface
Rust
1
star
34

Scolor

Simple ansi colors
Rust
1
star
35

coc-twind

Simple coc twind completion
TypeScript
1
star
36

Gbar

crossplatform demenu/rofi alternative (using gtk)
Rust
1
star
37

prayer-times-rust

Port of http://praytimes.org/wiki/Prayer_Times_Calculation
C++
1
star
38

Rhook

Hook libc functions with super easy API https://docs.rs/rhook
Rust
1
star