jot

MIT License Release Cargo

InstallationNotesUsageChangelogBuild from SourceDependenciesAuthorsLicense

Jot is a feature-stripped version of Obsidian focused on rapid note management through the terminal.
It uses the same format of storage as Obsidian, i.e. markdown files for notes, and local folders for vaults (and sub-folders).
Commands that encompass all basic needs are included. Each command has an alias (two letter abbreviation) to further increase rapidity.


Screenshot


Jot is under active development. While it contains all basic functions that should serve most needs, there's a laundry list of features that are yet to and will be added overtime.

Installation

Install with cargo:

bash $ cargo install jt

Use executable (only for windows)

Download Jot v0.1.1 (.exe) and add it to your path.

Notes

Usage

The following example represents a general user flow when first using Jot.

Create a vault using the following command:

bash $ jt vault newvault ~/vaults

Here, newvault is the name of the vault, and '~/vault' is the location where it will be created (this location should be an absolute fs path and exist already or jot will throw an error).

Providing no arguments to vault command will list all vaults.

bash $ jt vault

Adding the '-l' flag will list all vaults with their locations.

bash $ jt vault -l

At this moment only newvault will be listed.

Enter into the vault:

bash $ jt enter newvault

enter command is also used to switch to other vaults.

Create notes and folders

bash $ jt note newnote

bash $ jt folder newfolder

note and folder, both work similarly and create the corresponding items in current folder. When a vault is first created, the current folder is set to its root.

Change folder

bash $ jt chdir newfolder

chdir command will switch the current folder to the location mentioned.
Relative path to location from current folder has to be provided. Standard fs paths are accepted as valid input, like '../folder1/somefolder/'.

bash $ jt chdir ..

This will switch back to the root of vault.

Print dir tree of current folder

bash $ jt list

When needed list command will print the dir tree of current folder. All notes will be highlighted in blue #1589F0.

This is what the dir tree will look like with this vault's root as the current folder.

bash newvault ├── newfolder └── newnote # highlighted in blue

Fs operations

Command remove works as its name suggests, on all items (vaults, notes, or folders).

$ jt remove note newnote

Commands rename and move are used similarly but take one additional argument each.

Command rename takes the new name as its third argument.

bash $ jt rename note newnote somenewnote

Command move takes the new location as its third argument.

For vaults, path rules are same as vault command and for other items, path rules are same as chdir command.

bash $ jt move note newnote /newfolder/

These commands take the item type (vault, note, or folder) as their first argument.

Command vmove is similar to move, but it moves an item (note or folder) from the current folder of the current vault to the root of a different vault, and takes the name of this vault as an argument in place of location.

bash $ jt vmove note newnote somevault

Every keyword used so far (commands and item names) is interchangeable with its two letter alias, e.g. move command can also be written as:

$ jt mv nt newnote /newfolder/

Handle Jot's config

bash $ jt config editor

The value of the provided field will be printed with config command. Providing a value as an additional argument with this command will update the field.

bash $ jt config editor code.cmd

Changelog

Build from Source

Prerequisites

Build

Clone the repo and cd into the directory:

bash $ git clone https://github.com/araekiel/jot.git $ cd jot

Run the following command to install dependencies and build/compile the program.

bash $ cargo build

Then run the executable created in 'target/debug/' (or add it to your path).

Or, run the tool directly:

bash $ cargo run -- *args*

Pass in commands and arguments after '--'.

Dependencies

Authors

License

MIT License | Copyright (c) 2022 Kumar Shashwat