Commit Graph

694 Commits

Author SHA1 Message Date
0bb1506d25 remove commented field in struct 2019-06-07 10:31:03 -04:00
2fea75b02e vgo - add command working 2019-06-07 10:31:03 -04:00
3c42f846c2 fix duplicated dir 2019-06-07 10:31:03 -04:00
221bae3986 depricate package name flag 2019-06-07 10:31:03 -04:00
b8ad19ad0d reorder some operations 2019-06-07 10:31:03 -04:00
732e4db0d4 vgo - trim some uneeded data from struct 2019-06-07 10:31:03 -04:00
c7ac101cf8 vgo - fixing up the add op to work with vgo 2019-06-07 10:31:03 -04:00
3741457400 add CommandTemplate 2019-06-07 10:31:03 -04:00
50665e9993 vgo - update golden templates 2019-06-07 10:31:03 -04:00
642c3c7a0e vgo - compare generated files against golden files 2019-06-07 10:31:03 -04:00
e993d53002 vgo - take named directory or current wd 2019-06-07 10:31:03 -04:00
04af6aed80 vgo - add todo 2019-06-07 10:31:03 -04:00
c3b51f3a2e simplify test 2019-06-07 10:31:03 -04:00
4c22a20fd4 vgo - remove unused methods 2019-06-07 10:31:03 -04:00
73b5215dc7 vgo - fix format 2019-06-07 10:31:03 -04:00
44c2d482f6 fix calling to createLicenseFile 2019-06-07 10:31:03 -04:00
91dbcb7ffe remove commented code 2019-06-07 10:31:03 -04:00
5b1685faaa vgo - generate license 2019-06-07 10:31:03 -04:00
abab9aa52a vgo - add Create method to Project struct 2019-06-07 10:31:03 -04:00
69420a9ffa vgo - create directory 2019-06-07 10:31:03 -04:00
17dc9f8142 fixing up templates more 2019-06-07 10:31:03 -04:00
26d210e2cd vgo - fixing up the root template 2019-06-07 10:31:03 -04:00
c356c6491b add .idea/* to gitignore 2019-06-07 10:31:03 -04:00
80ea2901b6 vgo-support - re-working code generator 2019-06-07 10:31:03 -04:00
d658160bdd Add markdown file explaining support for PowerShell 2019-06-07 10:26:08 -04:00
21ccc7b307 Add basic PowerShell completions 2019-06-07 10:26:08 -04:00
e2c45ac9eb Started working on Unified API for the various shell completions:
- Moved some general function to a more generic shell_completions file.
- Added functions to mark flag as directory completion.
- Started making the global functions docs more generic (not bash
  specific) and added compatibility matrix.
2019-06-07 10:09:50 -04:00
601d83077b typo in zsh-completions.md 2019-06-07 10:09:50 -04:00
edbb6712e2 zsh-completions: implemented argument completion. 2019-06-07 10:09:50 -04:00
d262154093 zsh-completion: tidy up function and variable names
There are many files in the package, renamed all zsh-completion
related names to convey that.
2019-06-07 10:09:50 -04:00
8822449c0f zsh-completion: added escapinng of single quotes in flag description. 2019-06-07 10:09:50 -04:00
66a98807d4 zsh-completion: test to verify that we're always running on root cmd. 2019-06-07 10:09:50 -04:00
7b62c7df78 zsh-completion: --version and --help still doesn't work correctly
When invoking from subcommand. Modified the test to prove.
2019-06-07 10:09:50 -04:00
7ce08e227e zsh-completion: completion should always parse the root command!
It was running on the command it was invoked from which caused some
additional helpers (--help, --version) not to be generated.
2019-06-07 10:09:50 -04:00
91e80cc4a4 zsh-completion: remove bad test
I thought there was a bug in the boolSlice definition but it seems
It was my mistake in identifying what's going on. Also removed the
provisioning to skip tests (doesn't seem to be needed anymore).
2019-06-07 10:09:50 -04:00
0d9a33d2da zsh-completion: remove temporary file
Yet another temporary file that found itself in the repo :(
2019-06-07 10:09:50 -04:00
50f385938e zsh-completion: added support for filename globbing. 2019-06-07 10:09:50 -04:00
bda855a1a0 zsh-completions: fixed zsh completion markdown file name. 2019-06-07 10:09:50 -04:00
dd577bdf31 zsh-completion: added zsh-completion documentation. 2019-06-07 10:09:50 -04:00
461a39d5b9 zsh-completion: removed forgotten function. 2019-06-07 10:09:50 -04:00
df12a0a249 zsh-completion: two fixes for identifying flag usage:
Fixed after input from @eparis:
- Decide on option parameter by checking NoOptDefVal
- Slices also could be specified multiple times.
2019-06-07 10:09:50 -04:00
e9ee8f0446 zsh-completion: removed the _dep_ files.
They were committed by mistake.
2019-06-07 10:09:50 -04:00
ec4b8c974c zsh-completions: revised flags completion rendering + new features:
- If the flags are not bool the completion expects argument.
- You don't have to specify file extensions for file completion to
  work.
- Allow multiple occurrences of flag if type is stringArray.

Need to verify that these assumption are correct :)
2019-06-07 10:09:50 -04:00
e8018e8612 zsh-completion template refactoring:
- removed redundant function
- improved other functions :)
- better names for other functions
2019-06-07 10:09:50 -04:00
2662787697 zsh-completion: added support for subcommand description.
Also make the template more elegant on the way...
2019-06-07 10:09:50 -04:00
f0508c8e76 zsh-completion ignores hidden commands and flags :) 2019-06-07 10:09:50 -04:00
a15d099018 zsh-completion fixed reference to cmd name
cmd.Use is not the command name :). Found it once I figured out
that I need to execute the command in order to fully test the
generated completion.
2019-06-07 10:09:50 -04:00
7e2436b79d First try at better zsh completions:
A very basic POC. Need to refactor to generate completion
structure before passing to the template to avoid repeated
computations.

What works:
  * Real zsh completion (not built on bash)
  * Basic flags (with long flag and optional shorthand)
  * Basic filename completion indication (not with file extensions though)

What's missing:
  * File extensions to filename completions
  * Positional args
  * Do we require handling only short flags?
2019-06-07 10:09:50 -04:00
67fc4837d2 added variable to allow configuration of mousetrap message duration (#809)
new variable MousetrapDisplayDuration allows to modify the default
display duration of 5s, or to completely disable the timeout and wait
for the user to press the return key.
2019-03-20 20:05:52 -04:00
5755ecf102 [TrivialPatches] Typos in README.md, fix and update CI, update projects list... (#840)
* update Example in README.md (#769)

* specify the color as the required arg (#777)

* command: fix typo in docstring of InheritedFlags (#779)

* add istio to the list of projects built with Cobra (#786)

* remove redundant 'else' (#806)

* add mattermost-server as a project built with Cobra (#824)

* update README.md (#826)

Fix the comment: consistent with others

* add uber/prototool as a project built with Cobra (#831)

* fix(ci): use go vet, update to Go 1.12, update shellcheck to v0.4.6 (#832)

* add go.mod and go.sum (#833)

* chore(travis): move 'diff' job to separate stage in Travis (#839)

* chore(travis): use language configuration list instead of explicit entries in matrix.include (#839)

* chore(travis): update shellcheck-docker to v0.6.0 (#839)

* update(README.md): separate projects by commas, instead of using a list

* chore: update viper to v1.3.2 and go-md2man to v1.0.10

* fix: convert CRLF to LF when comparing files

* use kyoh86/richgo to provide colored test outputs
2019-03-20 17:21:26 -04:00