-
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.
Remove unnecessary utf8-ascii conversion
- Loading branch information
Showing
2 changed files
with
66 additions
and
1 deletion.
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,65 @@ | ||
!_TAG_EXTRA_DESCRIPTION anonymous /Include tags for non-named objects like lambda/ | ||
!_TAG_EXTRA_DESCRIPTION fileScope /Include tags of file scope/ | ||
!_TAG_EXTRA_DESCRIPTION pseudo /Include pseudo tags/ | ||
!_TAG_EXTRA_DESCRIPTION subparser /Include tags generated by subparsers/ | ||
!_TAG_FIELD_DESCRIPTION epoch /the last modified time of the input file (only for F\/file kind tag)/ | ||
!_TAG_FIELD_DESCRIPTION file /File-restricted scoping/ | ||
!_TAG_FIELD_DESCRIPTION input /input file/ | ||
!_TAG_FIELD_DESCRIPTION name /tag name/ | ||
!_TAG_FIELD_DESCRIPTION pattern /pattern/ | ||
!_TAG_FIELD_DESCRIPTION typeref /Type and name of a variable or typedef/ | ||
!_TAG_FILE_FORMAT 2 /extended format; --format=1 will not append ;" to lines/ | ||
!_TAG_FILE_SORTED 1 /0=unsorted, 1=sorted, 2=foldcase/ | ||
!_TAG_KIND_DESCRIPTION!C d,macro /macro definitions/ | ||
!_TAG_KIND_DESCRIPTION!C e,enumerator /enumerators (values inside an enumeration)/ | ||
!_TAG_KIND_DESCRIPTION!C f,function /function definitions/ | ||
!_TAG_KIND_DESCRIPTION!C g,enum /enumeration names/ | ||
!_TAG_KIND_DESCRIPTION!C h,header /included header files/ | ||
!_TAG_KIND_DESCRIPTION!C m,member /struct, and union members/ | ||
!_TAG_KIND_DESCRIPTION!C s,struct /structure names/ | ||
!_TAG_KIND_DESCRIPTION!C t,typedef /typedefs/ | ||
!_TAG_KIND_DESCRIPTION!C u,union /union names/ | ||
!_TAG_KIND_DESCRIPTION!C v,variable /variable definitions/ | ||
!_TAG_KIND_DESCRIPTION!Markdown S,subsection /level 2 sections/ | ||
!_TAG_KIND_DESCRIPTION!Markdown T,l4subsection /level 4 sections/ | ||
!_TAG_KIND_DESCRIPTION!Markdown c,chapter /chapters/ | ||
!_TAG_KIND_DESCRIPTION!Markdown h,hashtag /hashtags/ | ||
!_TAG_KIND_DESCRIPTION!Markdown n,footnote /footnotes/ | ||
!_TAG_KIND_DESCRIPTION!Markdown s,section /sections/ | ||
!_TAG_KIND_DESCRIPTION!Markdown t,subsubsection /level 3 sections/ | ||
!_TAG_KIND_DESCRIPTION!Markdown u,l5subsection /level 5 sections/ | ||
!_TAG_KIND_DESCRIPTION!Sh a,alias /aliases/ | ||
!_TAG_KIND_DESCRIPTION!Sh f,function /functions/ | ||
!_TAG_KIND_DESCRIPTION!Sh h,heredoc /label for here document/ | ||
!_TAG_KIND_DESCRIPTION!Sh s,script /script files/ | ||
!_TAG_KIND_DESCRIPTION!Yaml a,anchor /anchors/ | ||
!_TAG_OUTPUT_EXCMD mixed /number, pattern, mixed, or combineV2/ | ||
!_TAG_OUTPUT_FILESEP slash /slash or backslash/ | ||
!_TAG_OUTPUT_MODE u-ctags /u-ctags or e-ctags/ | ||
!_TAG_OUTPUT_VERSION 0.0 /current.age/ | ||
!_TAG_PARSER_VERSION!C 1.1 /current.age/ | ||
!_TAG_PARSER_VERSION!Markdown 1.1 /current.age/ | ||
!_TAG_PARSER_VERSION!Sh 0.0 /current.age/ | ||
!_TAG_PARSER_VERSION!Yaml 0.0 /current.age/ | ||
!_TAG_PATTERN_LENGTH_LIMIT 96 /0 for no limit/ | ||
!_TAG_PROC_CWD /home/henk/git/dwmbar/ // | ||
!_TAG_PROGRAM_AUTHOR Universal Ctags Team // | ||
!_TAG_PROGRAM_NAME Universal Ctags /Derived from Exuberant Ctags/ | ||
!_TAG_PROGRAM_URL https://ctags.io/ /official site/ | ||
!_TAG_PROGRAM_VERSION 6.1.0 /v6.1.0/ | ||
!_TAG_ROLE_DESCRIPTION!C!function foreigndecl /declared in foreign languages/ | ||
!_TAG_ROLE_DESCRIPTION!C!header local /local header/ | ||
!_TAG_ROLE_DESCRIPTION!C!header system /system header/ | ||
!_TAG_ROLE_DESCRIPTION!C!macro undef /undefined/ | ||
!_TAG_ROLE_DESCRIPTION!C!struct foreigndecl /declared in foreign languages/ | ||
!_TAG_ROLE_DESCRIPTION!Sh!heredoc endmarker /end marker/ | ||
!_TAG_ROLE_DESCRIPTION!Sh!script loaded /loaded/ | ||
!_TAG_ROLE_DESCRIPTION!Yaml!anchor alias /alias/ | ||
dpy dwmbar.c /^static Display *dpy;$/;" v typeref:typename:Display * file: | ||
dwmbar README.md /^# dwmbar$/;" c | ||
get_mpd dwmbar.c /^char *get_mpd() {$/;" f typeref:typename:char * | ||
getdatetime dwmbar.c /^char *getdatetime() {$/;" f typeref:typename:char * | ||
getnowplaying dwmbar.c /^char *getnowplaying() {$/;" f typeref:typename:char * | ||
main dwmbar.c /^int main(void) {$/;" f typeref:typename:int | ||
setstatus dwmbar.c /^void setstatus(char *str) {$/;" f typeref:typename:void | ||
smprintf dwmbar.c /^smprintf(char *fmt, ...) {$/;" f typeref:typename:char * |
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#! /bin/sh | ||
curl https://www.concertzender.nl | grep -A 1 '<div class="cz-font-head single-item-head-text dodot">' | dos2unix| grep '</div>' | lynx -stdin -dump -- | iconv -f utf-8 -t ascii -c | sed -e 's/^[ \t]*//' -e 's/Nu te horen//' | grep -v -e '^$' > /home/henk/.radiotray/nowplaying | ||
curl https://www.concertzender.nl | grep -A 1 '<div class="cz-font-head single-item-head-text dodot">' | dos2unix| grep '</div>' | lynx -stdin -dump -- | sed -e 's/^[ \t]*//' -e 's/Nu te horen//' | grep -v -e '^$' > /home/henk/.radiotray/nowplaying | ||
|