1. 18 Dec, 2016 3 commits
  2. 17 Dec, 2016 4 commits
  3. 14 Dec, 2016 3 commits
    • Marc Cornellà's avatar
      docker: update completion (upstream 2fe62f2) · 67dad45b
      Marc Cornellà authored
      Closes #5683
      67dad45b
    • Arthur's avatar
      add dotenv plugin (#4373) · 8d35fa0e
      Arthur authored
      8d35fa0e
    • Erik Zivkovic's avatar
      gradle: extract simple task names from subproject tasks (#5704) · 3b13dc07
      Erik Zivkovic authored
      Currently, only tasks with complete subproject specifier are added to
      .gradletasknamecache. Gradle commands can be called for all (sub-)projects
      they are defined for, using their name as defined in the subproject, here
      called "simple" task names. One example is "gradle clean".
      
      This patch adds support for parsing out those "simple" task names from the list
      of fully specified task names. The .gradletasknamecache file will contain
      both the fully specified names, and the "simple" names for your autocompletion
      pleasure.
      3b13dc07
  4. 08 Dec, 2016 1 commit
  5. 29 Nov, 2016 1 commit
  6. 28 Nov, 2016 1 commit
  7. 23 Nov, 2016 1 commit
  8. 16 Nov, 2016 1 commit
  9. 11 Nov, 2016 2 commits
  10. 10 Nov, 2016 1 commit
  11. 02 Nov, 2016 6 commits
  12. 25 Oct, 2016 4 commits
  13. 17 Oct, 2016 1 commit
  14. 10 Oct, 2016 1 commit
  15. 09 Oct, 2016 1 commit
  16. 08 Oct, 2016 1 commit
  17. 07 Oct, 2016 1 commit
    • diego's avatar
      Add non 0 exit code for missing jump targets (#5500) · d69f2850
      diego authored
      This allows for the user to combine the jump command with something else. In my example cd and jump are now combined like this:
      
      ```bash
      jumpcd() {
              jump $1 > /dev/null || cd $1
      }
      alias cd="jumpcd"
      ```
      d69f2850
  18. 04 Oct, 2016 6 commits
  19. 03 Oct, 2016 1 commit
    • Marc Cornellà's avatar
      Fix cp plugin completion and refactor (#5427) · 81981ef2
      Marc Cornellà authored
      * cp plugin: change cpv to function so that completion works
      
      * cp plugin: show numbers in units of 1024 (K,M,G,T)
      
      Use `-h` level (3): output numbers in units of 1024.
      See the manpage of rsync for more information.
      
      * cp plugin: add a README file
      
      * cp plugin: recurse directories
      
      * cp plugin: remove `--` to separate files from options
      
      This has some undesired effects, like having `cpv --help` be a file
      not found error.
      
      Use `--` yourself if you need it (which you generally don't):
      
      ```zsh
      cpv -- -some-file-with-hyphens.txt /tmp
      ```
      
      Added this same info to the README.
      81981ef2