Nate Fischer

Results 81 issues of Nate Fischer

External commands were previously limited to Windows. There's no good reason for this, so this adds support for Linux as well. Fixes #122 Test: manually tried `whoami` and `git status`...

In bash and zsh, you can do aliases like this: ```bash $ alias ls='ls -l' $ ls # actually invokes `ls -l` drwxr-xr-x 5 1000 1000 4096 Jun 9 05:25...

bug
non-compliant behavior

Currently, `less` and `grep` can't take advantage of the preparser (since they're in separate modules). Here's some possible solutions: 1. move `vorpal-less` and `vorpal-grep` into cash 2. move the preparser...

vorpal

This would be useful for viewing the return status of functions. Ex: ``` Bash bash $ true bash $ echo $? 0 bash $ false bash $ echo $? 1...

Bash supports the syntax `cmd1;cmd2`, which executes the first command and then executes the second command (it's the same as if these were two different commands). Also, Bash supports `cmd1...

enhancement
vorpal

I noticed that cash's grep uses colored output by default. This doesn't seem to be a POSIX compliant default, however. On my Ubuntu system, if I type `grep 'o' package.json`,...

help wanted
non-compliant behavior

## Steps to repro: ```sh ➜ ~ mkdir dummy-repo ➜ ~ cd dummy-repo/ ➜ dummy-repo git init Initialized empty Git repository in /usr/local/google/home/ntfschr/dummy-repo/.git/ ➜ dummy-repo git:(null) mkdir sub/ ➜ dummy-repo...

Not sure why this is happening, but I'm pretty sure this plugin breaks the `v:swapchoice` varaible. I have a section of code in my vimrc like: ```vim augroup NoSimultaneousEdits autocmd!...

I'm not sure why this test is skipped, it looks like it's been skipped since the initial commit. We can probably just enable it, but care should be taken to...

enhancement
test

To eliminate all security holes and get a consistent cross-platform API, this should migrate to ShellJS's exec-replacement after the next release (implementation can start once it has been merged).

enhancement