forked from universal-ctags/ctags
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b307057
commit c60f2e0
Showing
4 changed files
with
84 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
--sort=no | ||
# "qualified" extra doesn't work. | ||
# --extras=+q | ||
--fields=+S |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
EnumName1 input.ps1 /^enum EnumName1 {$/;" g | ||
EnumName2 input.ps1 /^enum EnumName2 {$/;" g | ||
EnumName3 input.ps1 /^Enum EnumName3 {$/;" g | ||
EnumName4 input.ps1 /^[Flags()] enum EnumName4 {$/;" g |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# EnumName1 | ||
enum EnumName1 { | ||
Label11 | ||
Label12 = 10 | ||
} | ||
|
||
# EnumName2 | ||
enum EnumName2 { | ||
Label21 | ||
Label22 = 20 | ||
} | ||
|
||
# EnumName3 | ||
Enum EnumName3 { | ||
Label31 | ||
Label32 = 30 | ||
} | ||
|
||
# EnumName4 | ||
[Flags()] enum EnumName4 { | ||
Label41 | ||
Label42 = 40 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters