Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

⚡Rapid note management for the terminal.

License

NotificationsYou must be signed in to change notification settings

shashwatah/jot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ReleaseReleaseCargoPRs

InstallationUsageNotesChangelogBuild from SourceDependenciesContributeLicense

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

Installation

Install with cargo:

$ cargo install jt

Use executable (only for windows)

Downloadjt.exe (v0.1.2) and add it to your path.

Usage

The following example represents a general user flow when first usingJot.

Create a vault using the following command:

$ jt vault newvault~/vaults

Here,newvault is the name of the vault, and '~/vaults' 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 tovault command will list all vaults.

$ jt vault

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

$ jt vault -l

At this moment onlynewvault will be listed.

Enter into the vault:

$ jt enter newvault

enter command is also used to switch to other vaults.

Create notes and folders:

$ jt note newnote
$ jt folder newfolder

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

Open a note:

jt open newnote

open command will open the specified note with the editor set in config.

Change folder:

$ 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/'.

$ jt chdir ..

This will switch back to the root of vault.

Open current folder in explorer:

$ jt opdir

opdir command will open the current folder in the default file explorer.

List items in current folder:

$ jt list

When neededlist command will print the dir tree of current folder.All notes will be highlighted inblue#1589F0.

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

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

Adding an item type (note orfolder) to thelist command like so,

$ jt list note

will only list items of the specified type.

Fs operations:

Commandremove works as its name suggests, on all items (vault,note, orfolder).

$ jt remove note newnote

Commandsrename andmove are used similarly but take one additional argument each.

Commandrename takes the new name as its third argument.

$ jt rename note newnote somenewnote

Commandmove takes the new location as its third argument.

For vaults, path rules are same asvault command and for other items, path rules are same aschdir command.

$ jt move note newnote /newfolder/

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

Commandvmove is similar tomove, but it moves an item (note orfolder) 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.

$ 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:

$ jt config

config command will open the config file in the seteditor. By default this isnvim.

Specifying a config field as an argument will display its value without opening the config file itself.

$ jt config editor

Providing a value as an additional argument will update the field.

$ jt config editor code.cmd

Get Help

Runjt without a command, or withhelp command or-h flag for main help message.

$ jt

Usehelp command or-h flag with a command to get corresponding help.

$ jt help vault
$ jt vault -h

Notes

General

  • Jot is published oncrates.io as 'jt', since 'jot' wasn't available.
  • As of now, Jot has only been tested onwindows (andWSL).

Config & Data

  • App data is stored in config and data files in locations generated by thedirectories crate. Individual Vault data is stored in '.jot' folder inside each vault. It is advised that these files not be tampered with, since atm there's no way to automatically fix them.
  • App data files are generated in their default state the first time a command is run, if they don't exist already. Vault data files are generated in their default state when a vault is created.
  • App config has two fields:editor &conflict.
    • editor by default is set tonvim andconflict totrue.
    • conflict field tells jot if the editor conflicts with it for control over the terminal. Set it totrue for editors likenvim andfalse for editors likenotepad.

Changelog

  • v0.1.2 :

    • Fix:

      • list command could display items other than notes and folders.
      • process_path() couldn't collapse certain paths properly, andstd::fs::canonicalize doesn't work as intended on windows.dunce crate has been used to achieve the required function.
    • Feat:

      • opdir command has been added to enable opening the current folder in the default file explorer.
      • list command can now filter items based on the item type provided.
      • config command can now open the config file in the set editor.
  • v0.1.1 :

    • As advised byu/epage (github/epage) on my r/rustpost, commands are now represented by their full word, and the two letter abbreviations (previously serving as commands themselves) are now aliases for these commands.
    • Updated docs.

Build from Source

Clone the repository and cd into the directory:

$ git clone https://github.com/shashwatah/jot.git$cd jot

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

$ cargo build

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

Or, run the tool directly:

$ cargo run --*args*

Pass in commands and arguments after '--'.

Dependencies

  • serde &toml have been used in tandem to read and write data files.
  • clap has been used to create the command line interface.
  • directories has been used to generate os-dependent config and data file locations.
  • fs_extra has been used for recursive move of folders.
  • dunce has been used as an alternative tostd::fs::canonicalize.

Contribute

Contributions are welcome and appreciated! Please review thecontributing guidelines for more information on how to get involved.

License

MIT License | Copyright (c) 2024 Kumar Shashwat


[8]ページ先頭

©2009-2025 Movatter.jp