Levi Wilson

Results 20 comments of Levi Wilson

So, this is what I've come up with so far: ``` doskey cd=cd $1 $T autojump -a ^%CD^%\$1 ``` This will alias the `cd` command to add the directory to...

FYI you can add that to your `/config/aliases` file. In that case, you'd omit the `^` characters and just add the line: ``` cd=cd $*$Tautojump -a %CD%\$1 ```

I've updated this to actually be ``` cd=cd $*$Tautojump -i >nul ``` This way it also updates the weights and I do not have to do anything fancy with adding...

@boazsegev any feedback on these changes?

> * `test/combine_pdf/load_test.rb` is spec style, but `test/combine_pdf/renderer_test.rb` is `Minitest::Test` style. I don't think it's very desirable to have two specs with different styles in there. I've never used `Minitest`...

@boazsegev just checking in on this. It look good?

I don't have the _same_ issue regarding `aws-vault list` (that's always fast for me) however I _do_ have something similar if I issue multiple `aws-vault exec` commands. For me, I...

I'm getting this same stack trace in one of my tests that is setting up a `:memory:` database. However, the same test passes in Eclipse when I run it, but...

@rvenugopal I found that the issue (for me anyway) was with Java `1.7` vs. `1.6`. Running in Eclipse was fine, but this was because the unit test project was set...

> while we are looking for a permanent solution, as a bandaid for the original problem with "Java11 (Corretto)" and "Java 8 on Amazon Linux 2" runtimes you can use...