All Projects → NeilMacMullen → jumpfs

NeilMacMullen / jumpfs

Licence: MIT license
Jumpfs is a cross-shell bookmarking system for files. folders, urls and shell-comands. It works in PowerShell, Bash, and Cmd.

Programming Languages

C#
18002 projects
powershell
5483 projects
shell
77523 projects
Batchfile
5799 projects

Projects that are alternatives of or similar to jumpfs

osmosnote
The knowledge IDE
Stars: ✭ 69 (+130%)
Mutual labels:  wsl
xplr
A hackable, minimal, fast TUI file explorer
Stars: ✭ 2,271 (+7470%)
Mutual labels:  wsl
bookmarks-for-spotify
"Bookmarks for Spotify" allows you to bookmark recently played song or audiobook tracks from Spotify.
Stars: ✭ 22 (-26.67%)
Mutual labels:  bookmark
wslpy
A python3 Library for WSL specific tasks
Stars: ✭ 59 (+96.67%)
Mutual labels:  wsl
ArtixWSL
Install Artix Linux as a WSL Instance.
Stars: ✭ 45 (+50%)
Mutual labels:  wsl
YouP3
Android app for downloading media from YouTube with 4K Support (Beta)
Stars: ✭ 51 (+70%)
Mutual labels:  bookmark
kn
Alternative to cd. Navigate by typing abbreviations of paths.
Stars: ✭ 68 (+126.67%)
Mutual labels:  jump
Cyca
Web-based bookmarks and feeds manager
Stars: ✭ 15 (-50%)
Mutual labels:  bookmark
usbipd-win
Windows software for sharing locally connected USB devices to other machines, including Hyper-V guests and WSL 2.
Stars: ✭ 1,321 (+4303.33%)
Mutual labels:  wsl
browse-manager
Chrome扩展,网址/域名拉黑,访问次数统计、提示,自动收藏。等
Stars: ✭ 81 (+170%)
Mutual labels:  bookmark
222
222. Dark mode. Everywhere. 222 bytes of js to make any website dark
Stars: ✭ 58 (+93.33%)
Mutual labels:  bookmark
subsystemctl
Utility to run systemd in WSL2 with a Linux namespace
Stars: ✭ 313 (+943.33%)
Mutual labels:  wsl
pinboard-safariextension
📌 Pinboard Safari extension for bookmarking the current page.
Stars: ✭ 16 (-46.67%)
Mutual labels:  bookmark
MathOptSetDistances.jl
Distances to sets for MathOptInterface
Stars: ✭ 24 (-20%)
Mutual labels:  jump
WSL-manager
unofficial gui manager for Windows Subsystem for Linux (WSL)
Stars: ✭ 25 (-16.67%)
Mutual labels:  wsl
z.vim
Help jumping to the most used directories in vim.
Stars: ✭ 19 (-36.67%)
Mutual labels:  jump
awesome-bookmarking
🔖 Everything bookmarking related
Stars: ✭ 56 (+86.67%)
Mutual labels:  bookmark
runx
Provide X server on MS Windows with cookie authentication.
Stars: ✭ 67 (+123.33%)
Mutual labels:  wsl
JumpJump
微信小游戏 跳一跳 kotlin PC破解
Stars: ✭ 70 (+133.33%)
Mutual labels:  jump
dotfiles
Cross platform home directory settings
Stars: ✭ 17 (-43.33%)
Mutual labels:  wsl

NuGet GitHub release (latest by SemVer including pre-releases) NuGet Join the chat at https://gitter.im/jumpfs/community

Give a Star!

If you like, or are using this project please give it a star - thanks!


What's new?

vNext (source only)

  • migrate to Net6
  • slightly less intrusive version checking

v1.3.0

  • fixes an issue where get-content jfs:x would never terminate
  • fixed nuspec file
  • changed 'run' alias to 'jrun' to make alias collisions less likely

v1.2.0

  • Implemented 'remove' functionality
  • powershell and bash modules now better organised
  • better handling for missing bookmarks
  • If you pass an actual path instead of a bookmark, jumpfs now does the "right thing" in most cases.
  • Bookmarks can be exposed via virtual drive (Powershell 7 only)
  • It is now possible to bookmark Urls and shell commands

See full revision history


jumpfs is a simple cross-platform exe and collection of scripts that allow you bookmark locations in your file system, jump between them, or open them in explorer or VS Code.

Jumps knows how to translate between WSL paths and Windows paths so you can use Bash bookmarks from PowerShell or PowerShell bookmarks from Bash.

You can also "bookmark" Urls and shell commands which can make it a bit easier to reuse that complicated pipeline you just spent half an hour putting together.

It's easiest to demonstrate with a picture..

jumpfs in action

I want it!

Great! You can get prebuilt binaries or build it yourself from source. There is also a nuget package

Follow the instructions to

Basic use

The main commands are listed below but you can create your own quite easily by reading the advanced usage guide.

Commands have both long function names and shorter aliases, shown in brackets below. Aliases are defined at the top of ps-jumpfs.psm1 and bash-jumpfs.sh

jumpfs_mark (mark) - create a bookmark

mark can take up to 4 arguments. The first is the name you want to use for the bookmark. The remainder are path, line-number and column-number. The latter two are useful when specifying a bookmark to a particular position within a file.

  • mark name creates a bookmark at the current working directory
  • mark name path creates a bookmark at the supplied folder or file
  • mark name path 10 5 creates a bookmark with line number and column

path can be a file, folder, or URL starting http: or https:

jumpfs will silently overwrite an existing bookmark of the same name. This is by design since bookmarks are meant to be lightweight and ephemeral. If you don't like this behaviour, raise an issue and I'll consider adding a way to customise it.

jumpfs_go (go) - go to a bookmark

go only takes a single argument which is the name of the bookmark. Note that if you go to a file, you will actually be taken to the folder that contains it.

jumpfs_list (lst) - list bookmarks

If no arguments are supplied, lst will display all stored bookmarks. If an argument is given, it is used to search within the bookmark names and paths and only those that match are returned.

jumpfs_remove (rmbk) - remove bookmark

Removes a bookmark from the bookmark file

jumpfs_code (codego) - open Visual Studio Code at the bookmark

If the bookmark supplied to codego is a file and has a line and column associated with it the file will be opened at that position.

jumpfs_explorer_folder (x) - open Windows File Explorer at the bookmark

Opens Windows File Explorer at the location of the bookmark (or the containing folder if the bookmark is a file).

jumpfs_explorer_run (xr) - pass a file to Windows explorer

Similar to double clicking on a file in Windows Explorer - if a folder, it's opened, if a file, then the extension will be used as a clue to perform the associated action.

jumpfs_value (bp) - get bookmark path

Gets the path of a bookmark so you can use it in a command. For example:

ls (bp myplace)

jumpfs_browse (url) - browse to a URL

currently not implemented for Bash Runs explorer with the URL value of the bookmark

jumpfs_remember_last_command (markcmd)

currently not implemented for Bash Stores the last issued command as a bookmark

jumpfs_invoke (jrun)

currently not implemented for Bash Runs the bookmark (assuming it is a command that is suitable for the current shell)

jumpfs_info - display version and other information

jumpfs_info will provide version and environment information.

Advanced use and custom scripts

How to use the PowerShell virtual drive

Create custom functions and scripts by calling jumpfs directly: jumpfs parameter reference

"What's wrong with ZLocation?" and other questions

Read the faq

Contributions

PRs are welcome. Particularly to documentation and Linux-side scripts! Please read the contributors guide

Big-ticket items it would be nice to get help with....

  • Windows Shell extension
  • VS Code extension
  • a visual bookmark editor (possible as a VS Code extension)
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].