2014-08-01 10:37:32 +08:00
|
|
|
#! @sed@ -f
|
|
|
|
#.
|
|
|
|
# A Doxygen filter for building Fish's lexicon, for documentation bling.
|
|
|
|
#.
|
|
|
|
# Written specially for Fish, the shell for the 90's, in sed, the state of the
|
|
|
|
# art text processor from the 70's. Who's sed? sed's dead, baby, sed's dead.*
|
|
|
|
# by Mark Griffiths <mark@thebespokepixel.com> *but quite portable
|
|
|
|
#.
|
|
|
|
# Finds /fish../endfish blocks in documentation source files and enhances
|
2014-08-02 11:51:43 +08:00
|
|
|
# markup. Requires that the four character word 'classes' declared here are
|
|
|
|
# added to Doxyfiles as aliases i.e.:
|
2014-08-01 10:37:32 +08:00
|
|
|
#.
|
|
|
|
# Enhance for HTML Help pages (Doxyfile.user)…
|
|
|
|
# ALIASES = "fish=\htmlonly[block] \n<pre class=\"fish\">"
|
|
|
|
# ALIASES += "fish{1}=\htmlonly[block] \n<pre class=\"fish \1\">"
|
|
|
|
# ALIASES += "endfish=</pre>\endhtmlonly \n"
|
|
|
|
#.
|
|
|
|
# ALIASES += "blah{1}=<span class=\"comment\">\1</span>"
|
|
|
|
# ALIASES += "cmnd{1}=<span class=\"command\">\1</span>" and so on...
|
|
|
|
#.
|
|
|
|
# And simplify for man pages (Doxyfile.help)…
|
|
|
|
# ALIASES = "fish=<pre>"
|
|
|
|
# ALIASES += "fish{1}=<pre>"
|
|
|
|
# ALIASES += "endfish=</pre>"
|
|
|
|
#.
|
|
|
|
# ALIASES += "blah{1}=\1"
|
|
|
|
# ALIASES += "cmnd{1}=<em>\1</em>"...
|
|
|
|
#.
|
2014-08-02 11:51:43 +08:00
|
|
|
# It's meant to only ever be run once, during make, as Doxygen's 'INPUT
|
|
|
|
# FILTER', though can be run interactively by passing a file in via stdin. It
|
|
|
|
# wont respond to arguments.
|
|
|
|
#.
|
|
|
|
# It's most easily tested by passing test strings into the compiled script:
|
|
|
|
#.
|
2014-08-03 09:22:23 +08:00
|
|
|
# echo "/fish Line to test" | ./fish_lexicon_filter
|
2014-08-02 11:51:43 +08:00
|
|
|
#.
|
|
|
|
# The, at times, archiac looking regex is down to ensuring portable sed BREs
|
|
|
|
#.
|
2014-08-01 10:37:32 +08:00
|
|
|
# Licensed under whatever terms are most compatible with Fish's GPLv2 license,
|
|
|
|
# bascially free to use/reuse/redistribute/laugh at/be inspired by. Don't
|
|
|
|
# pretend it's your code unless you've spent more late nights on it than me but
|
|
|
|
# if it saves you a late night, do what you can to help rebalance karma. If it
|
|
|
|
# doesn't work or breaks something, it's your fault for using it: if it seems
|
|
|
|
# to work it's more likely a hallucination than anything based in reality.
|
|
|
|
#.
|
|
|
|
# Pattern flow control for scanning doc.h
|
|
|
|
/\\fish/,/\\endfish/ {
|
2014-08-02 11:51:43 +08:00
|
|
|
# Open \fish block, firstly it it's on it's own line
|
2014-08-01 10:37:32 +08:00
|
|
|
/^\\fish$/b
|
|
|
|
/^\\fish{[^}]*}$/b
|
2014-08-02 11:51:43 +08:00
|
|
|
# Then if it's inline. Remove and process immediately...
|
2014-08-01 10:37:32 +08:00
|
|
|
/^\\fish.*$/ {
|
2014-08-08 10:44:37 +08:00
|
|
|
# Catch @ symbol
|
|
|
|
s/@/(at)/
|
2014-08-01 10:37:32 +08:00
|
|
|
s/^\\fish//
|
|
|
|
s/\\endfish//
|
2014-08-08 10:44:37 +08:00
|
|
|
b html
|
2014-08-01 10:37:32 +08:00
|
|
|
}
|
|
|
|
# Output blank lines
|
|
|
|
/^$/b
|
|
|
|
# Inside \fish block. Process...
|
|
|
|
/\\endfish/!{
|
2014-08-08 10:44:37 +08:00
|
|
|
# Catch @ symbol
|
|
|
|
s/@/((d))/
|
2014-08-01 10:37:32 +08:00
|
|
|
# Preprocess HTML and HTML-like formatting
|
|
|
|
/<[^>]*>/ {
|
|
|
|
b html
|
|
|
|
}
|
|
|
|
# Process the rest
|
|
|
|
b process
|
|
|
|
}
|
|
|
|
# End block
|
|
|
|
/\\endfish/b
|
|
|
|
}
|
|
|
|
#.
|
|
|
|
# This is not the pattern we're looking for
|
|
|
|
b
|
|
|
|
#.
|
|
|
|
# Process any HTML tags.
|
|
|
|
# Structured to reduce sed's greediness.
|
|
|
|
:html
|
|
|
|
# Spans
|
|
|
|
s|<span style=['"]\([^'"][^'"]*\)">|@span{\1,|
|
|
|
|
s|<span class=['"]\([^'"][^'"]*\)">|@spcl{\1,|
|
|
|
|
s|</span>|}|
|
|
|
|
#.
|
|
|
|
# Bold
|
|
|
|
s|<b>|@bold{|
|
|
|
|
s|<b [^>]*>|@bold{|
|
|
|
|
s|</b>|}|
|
|
|
|
#.
|
2014-08-08 10:44:37 +08:00
|
|
|
# Strong (synonimous with emphasis)
|
2014-08-01 10:37:32 +08:00
|
|
|
s|<strong>|@bold{|
|
|
|
|
s|<strong [^>]*>|@bold{|
|
|
|
|
s|</strong>|}|
|
|
|
|
#.
|
2014-08-08 10:44:37 +08:00
|
|
|
# EMPHasis
|
2014-08-01 10:37:32 +08:00
|
|
|
s|<em>|@emph{|
|
|
|
|
s|<em [^>]*>|@emph{|
|
|
|
|
s|</em>|}|
|
|
|
|
#.
|
2014-08-08 10:44:37 +08:00
|
|
|
# Italic (synonimous with emphasis)
|
|
|
|
s|<i>|@emph{|
|
|
|
|
s|<i [^>]*>|@emph{|
|
|
|
|
s|</i>|}|
|
|
|
|
#.
|
|
|
|
# UNDeRline
|
2014-08-01 10:37:32 +08:00
|
|
|
s|<u>|@undr{|
|
|
|
|
s|<u [^>]*>|@undr{|
|
|
|
|
s|</u>|}|
|
|
|
|
t html
|
|
|
|
#.
|
|
|
|
# Some handy non-standard extensions
|
2014-08-08 10:44:37 +08:00
|
|
|
# autoSuGgeSTion
|
2014-08-01 10:37:32 +08:00
|
|
|
s|<s>|@sgst{|
|
|
|
|
s|<s [^>]*>|@sgst{|
|
|
|
|
s|</s>|}|
|
|
|
|
#.
|
2014-08-08 10:44:37 +08:00
|
|
|
# MaTCH
|
|
|
|
s|<m>|@mtch{|
|
|
|
|
s|<m [^>]*>|@mtch{|
|
|
|
|
s|</m>|}|
|
|
|
|
#.
|
|
|
|
# SearchMaTCh
|
|
|
|
s|<sm>|@smtc{|
|
|
|
|
s|<sm [^>]*>|@smtc{|
|
|
|
|
s|</sm>|}|
|
|
|
|
#.
|
|
|
|
# ERrOR
|
2014-08-01 10:37:32 +08:00
|
|
|
s|<error>|@eror{|
|
|
|
|
s|<error [^>]*>|@eror{|
|
|
|
|
s|</error>|}|
|
|
|
|
#.
|
|
|
|
# AsIs - protect from auto-formatting
|
|
|
|
s|<asis>|@asis{|
|
|
|
|
s|</asis>|}|
|
2014-08-08 10:44:37 +08:00
|
|
|
#.
|
|
|
|
# OUTPut - protect from auto-formatting
|
|
|
|
s|<outp>|@outp{|
|
|
|
|
s|</outp>|}|
|
2014-08-01 10:37:32 +08:00
|
|
|
t html
|
|
|
|
#.
|
|
|
|
# Clean other unhandled html
|
|
|
|
s|<\([A-Za-z][A-Za-z]*\)[^>]*>\([^<]*\)</\1>|\2|
|
|
|
|
t html
|
|
|
|
#.
|
|
|
|
# Start processing entities
|
|
|
|
:process
|
2014-08-08 10:44:37 +08:00
|
|
|
# Output:
|
|
|
|
# Line marked as output pass through
|
|
|
|
/@outp/ {
|
|
|
|
b
|
|
|
|
}
|
2014-08-01 10:37:32 +08:00
|
|
|
# Comments:
|
|
|
|
# Capture full line comments
|
2014-08-08 10:44:37 +08:00
|
|
|
/^\( *\)#\(.*\)$/ {
|
2014-08-01 10:37:32 +08:00
|
|
|
# Assume any line starting with a # is complete
|
2014-08-08 10:44:37 +08:00
|
|
|
s//\1@blah{\2}/
|
2014-08-01 10:37:32 +08:00
|
|
|
t
|
|
|
|
}
|
|
|
|
# Match sub-line comments
|
2014-08-08 10:44:37 +08:00
|
|
|
/#[0-9a-fA-F][0-9a-fA-F][0-9a-fA-F]/ ! {
|
|
|
|
s/#\(.*$\)/\\\
|
2014-08-03 00:10:28 +08:00
|
|
|
<@blah{#\1}\
|
|
|
|
/
|
2014-08-08 10:44:37 +08:00
|
|
|
}
|
2014-08-01 10:37:32 +08:00
|
|
|
#.
|
|
|
|
# Protected entities These shouldn't allow nested structure, so we move them
|
|
|
|
# to a marked, new line for a future extract/process/insert action.
|
|
|
|
#.
|
|
|
|
# AsIs block - resists formatting.
|
|
|
|
s/@asis{\(.*\)}/\\\
|
|
|
|
<@asis{\1}\
|
|
|
|
/g
|
|
|
|
#.
|
2014-08-08 10:44:37 +08:00
|
|
|
# Manual <span>
|
|
|
|
s/@span{\(.*\)}/\\\
|
|
|
|
<@span{\1}\
|
|
|
|
/g
|
|
|
|
#.
|
2014-08-01 10:37:32 +08:00
|
|
|
# String Literals
|
|
|
|
s/"\([^"]*\)"/\\\
|
|
|
|
<@dblq{\1}\
|
|
|
|
/g
|
|
|
|
s/'\([^']*\)'/\\\
|
|
|
|
<@sglq{\1}\
|
|
|
|
/g
|
|
|
|
#.
|
2014-08-08 10:44:37 +08:00
|
|
|
# AutoSuggestions.
|
|
|
|
s/@sgst{\([^}]*\)}/\\\
|
|
|
|
<@sgst{\1}\
|
|
|
|
/
|
|
|
|
#.
|
2014-08-01 10:37:32 +08:00
|
|
|
# Command/Function options
|
|
|
|
# Short options
|
|
|
|
s/-\([A-Za-z]\)\([^A-Za-z}]\)/\\\
|
|
|
|
<@opts{-\1}\
|
|
|
|
\2/g
|
|
|
|
#.
|
|
|
|
# Long options
|
2014-08-01 20:25:41 +08:00
|
|
|
s/--\([A-Za-z][A-Za-z0-9=_-]*\)\([^A-Za-z0-9=_-]*\)/\\\
|
2014-08-01 10:37:32 +08:00
|
|
|
<@opts{--\1}\
|
|
|
|
\2/g
|
|
|
|
#.
|
2014-08-08 10:44:37 +08:00
|
|
|
# Prompt
|
|
|
|
s/~>_/\\\
|
|
|
|
<@prmt{~}\
|
|
|
|
/
|
|
|
|
s/^>_/@prmt/
|
|
|
|
#.
|
|
|
|
# Cursor
|
|
|
|
#.
|
|
|
|
s/__$/@curs/
|
|
|
|
s/__\(.\)/\\\
|
|
|
|
<@curs{\1}\
|
|
|
|
/
|
|
|
|
#.
|
2014-08-01 10:37:32 +08:00
|
|
|
# Paths
|
2014-08-08 10:44:37 +08:00
|
|
|
/\n<@dblq[^}]*[~/]/b protect
|
|
|
|
/\n<@sglq[^}]*[~/]/b protect
|
|
|
|
/\n<@span[^}]*[~/]/b protect
|
|
|
|
#.
|
2014-08-01 10:37:32 +08:00
|
|
|
# Normal Directory
|
2014-08-08 10:44:37 +08:00
|
|
|
s|mkdir |mkdir :|
|
|
|
|
s|\([~/:][/]*[.A-Za-z_0-9/-]*\)\\ |\1=|g
|
|
|
|
s|\([~/][/]*[.A-Za-z_0-9/=-]*\)|\\\
|
|
|
|
<@path{\1}\
|
|
|
|
|g
|
|
|
|
t protect
|
|
|
|
s| \(:[/]*[.A-Za-z_0-9/=-]*\)|\\\
|
|
|
|
<@path{\1}\
|
2014-08-01 10:37:32 +08:00
|
|
|
|g
|
2014-08-08 10:44:37 +08:00
|
|
|
t protect
|
2014-08-01 10:37:32 +08:00
|
|
|
#.
|
2014-08-08 10:44:37 +08:00
|
|
|
# Dot Relative Directory (no spaces in path)
|
|
|
|
s| *\(./[A-Za-z_0-9/-]*\)| \\\
|
|
|
|
<@path{\1}\
|
|
|
|
|g
|
2014-08-01 10:37:32 +08:00
|
|
|
b protect
|
2014-08-02 11:51:43 +08:00
|
|
|
#.
|
2014-08-01 10:37:32 +08:00
|
|
|
# Tidy up. Merge back 'pure' entities from hold space.
|
|
|
|
:tidy
|
|
|
|
#.
|
|
|
|
# Uncomment the following 2 lines (ss) to log the pattern buffer.
|
2014-08-08 10:44:37 +08:00
|
|
|
s/^.*$/PATT: &/w lexicon.log
|
|
|
|
s/^PATT: //
|
2014-08-01 10:37:32 +08:00
|
|
|
#.
|
|
|
|
# Uncomment the following 4 lines (xssx) to log the hold buffer.
|
2014-08-08 10:44:37 +08:00
|
|
|
x
|
|
|
|
s/^.*$/HOLD: &/w lexicon.log
|
|
|
|
s/^HOLD: //
|
|
|
|
x
|
2014-08-01 10:37:32 +08:00
|
|
|
#.
|
|
|
|
# Tack the hold space to the end of the pattern buffer.
|
|
|
|
G
|
|
|
|
#.
|
|
|
|
# Uncomment the folowing two lines (ss) to log the buffer join.
|
|
|
|
s/^.*$/JOIN: &/w debug-lexicon.log
|
|
|
|
s/^JOIN: //
|
|
|
|
#.
|
|
|
|
# Iterate over alternate lines, matching '<' to '\'
|
|
|
|
:join
|
2014-08-08 10:44:37 +08:00
|
|
|
s,\([^\\ ]*\)\\\n\([^<]*\)<\(@[^}]*[}\\]\),\1\3\2,
|
2014-08-01 10:37:32 +08:00
|
|
|
t join
|
|
|
|
# Clean up stray new lines
|
|
|
|
s/\n//g
|
|
|
|
#.
|
2014-08-08 10:44:37 +08:00
|
|
|
# Uncomment the folowing two lines (ss) to log the buffer join.
|
|
|
|
s/^.*$/PCLN: &/w lexicon.log
|
|
|
|
s/^PCLN: //
|
2014-08-01 10:37:32 +08:00
|
|
|
# Clean up special cases
|
|
|
|
#.
|
2014-08-03 00:10:28 +08:00
|
|
|
/@blah/{
|
|
|
|
s/\(blah{[^@]*\)@sglq{\([^}]*\)}/\1'\2'/
|
|
|
|
s/\(blah{[^@]*\)@dblq{\([^}]*\)}/\1"\2"/
|
|
|
|
s/\(blah{[^@]*\)@....{\([^}]*\)}/\1\2/
|
|
|
|
}
|
2014-08-01 10:37:32 +08:00
|
|
|
/@redr/{
|
|
|
|
:cleanredr
|
2014-08-03 00:10:28 +08:00
|
|
|
s/\(redr{[^@}]*\)@cmnd{\([^}]*\)}/\1\2/
|
|
|
|
s/\(redr{[^@}]*\)@func{\([^}]*\)}/\1\2/
|
|
|
|
s/\(redr{[^@}]*\)@sbin{\([^}]*\)}/\1\2/
|
|
|
|
s/\(redr{[^@}]*\)@fsfo{\([^}]*\)}/\1\2/
|
2014-08-02 11:51:43 +08:00
|
|
|
s/\(redr{[^}]*\)}\( *\)@path{\([^}]*\)/\1\2\3/
|
2014-08-01 10:37:32 +08:00
|
|
|
t cleanredr
|
|
|
|
}
|
2014-08-08 10:44:37 +08:00
|
|
|
/@sgst/ {
|
|
|
|
:cleansgst
|
|
|
|
s/\(sgst{@curs{.}[^@]*\)@cmnd{\([^}]*\)}/\1\2/
|
|
|
|
s/\(sgst{@curs{.}[^@]*\)@sbin{\([^}]*\)}/\1\2/
|
|
|
|
s/\(sgst{@curs{.}[^@]*\)@path{\([^}]*\)}/\1\2/
|
|
|
|
t cleansgst
|
|
|
|
}
|
2014-08-01 10:37:32 +08:00
|
|
|
/@fsfo/{
|
|
|
|
:cleanfsfo
|
2014-08-03 00:10:28 +08:00
|
|
|
s/\(fsfo{[^@}]*\)@cmnd{\([^}]*\)}/\1\2/
|
|
|
|
s/\(fsfo{[^@}]*\)@func{\([^}]*\)}/\1\2/
|
|
|
|
s/\(fsfo{[^@}]*\)@sbin{\([^}]*\)}/\1\2/
|
2014-08-01 10:37:32 +08:00
|
|
|
t cleanfsfo
|
|
|
|
}
|
2014-08-02 11:51:43 +08:00
|
|
|
#.
|
2014-08-08 10:44:37 +08:00
|
|
|
# Restore Paths
|
|
|
|
/@fsfo/ {
|
|
|
|
s/\(@fsfo{[^=]*\)=/\1 /
|
|
|
|
}
|
|
|
|
/@path/ {
|
|
|
|
:cleanpath
|
|
|
|
s/\(@path{[^:]*\):/\1/
|
|
|
|
s/\(@path{[^=]*\)=/\1\\ /
|
|
|
|
t cleanpath
|
|
|
|
s/@path{}//
|
|
|
|
}
|
|
|
|
#.
|
2014-08-02 11:51:43 +08:00
|
|
|
# Finally, restructure to follow Fish's command [arguments] semantics.
|
2014-08-03 00:10:28 +08:00
|
|
|
# Find the initial command, and change any others to arguments, up to a |, ( or ;
|
2014-08-02 11:51:43 +08:00
|
|
|
# Assumes that a valid line will start with either a builtin, a function or a binary.
|
|
|
|
#.
|
2014-08-03 09:22:23 +08:00
|
|
|
# 'if' and 'for' seem to be special cases
|
2014-08-08 10:44:37 +08:00
|
|
|
#.
|
|
|
|
# Uncomment the folowing two lines (ss) to log the buffer join.
|
|
|
|
s/^.*$/PREQ: &/w lexicon.log
|
|
|
|
s/^PREQ: //
|
|
|
|
#.
|
|
|
|
# Find initial commands/functions/binaries
|
|
|
|
#.
|
|
|
|
# Store prmt, if present
|
|
|
|
#.
|
|
|
|
/@prmt/ {
|
|
|
|
h
|
|
|
|
s/^\(@prmt *\).*$/\1/
|
|
|
|
x
|
|
|
|
s/^@prmt *//
|
2014-08-03 09:22:23 +08:00
|
|
|
}
|
2014-08-08 10:44:37 +08:00
|
|
|
#.
|
|
|
|
s/^\( *\)@sbin/\1@xbin/
|
|
|
|
s/\( *[;()] *\)@sbin/\1@xbin/
|
|
|
|
s/\( *@redr{|} *\)@sbin/\1@xbin/
|
|
|
|
s/^\( *\)@cmnd/\1@xcmd/
|
|
|
|
s/\( *[;()] *\)@cmnd/\1@xcmd/
|
|
|
|
s/\( *@redr{|} *\)@cmnd/\1@xcmd/
|
|
|
|
s/^\( *\)@func/\1@xfnc/
|
|
|
|
s/\( *[;()] *\)@func/\1@xfnc/
|
|
|
|
s/\( *@redr{|} *\)@func/\1@xfnc/
|
|
|
|
|
|
|
|
s/@cmnd/@args/g
|
|
|
|
s/@func/@args/g
|
|
|
|
s/@sbin/@args/g
|
2014-08-03 09:22:23 +08:00
|
|
|
|
2014-08-08 10:44:37 +08:00
|
|
|
s/^.*$/PSTQ: &/w lexicon.log
|
|
|
|
s/^PSTQ: //
|
2014-08-03 09:22:23 +08:00
|
|
|
#.
|
2014-08-02 11:51:43 +08:00
|
|
|
s/xcmd/cmnd/g
|
|
|
|
s/xfnc/func/g
|
|
|
|
s/xbin/sbin/g
|
2014-08-08 10:44:37 +08:00
|
|
|
x
|
|
|
|
/^@prmt/ {
|
|
|
|
G
|
|
|
|
s/^@prmt \n/@prmt /
|
|
|
|
}
|
|
|
|
/^@prmt/ ! {
|
|
|
|
x
|
2014-08-03 09:22:23 +08:00
|
|
|
}
|
|
|
|
#.
|
|
|
|
# Mark up sesitive character entities.
|
2014-08-01 10:37:32 +08:00
|
|
|
#.
|
2014-08-02 11:51:43 +08:00
|
|
|
:entities
|
2014-08-01 10:37:32 +08:00
|
|
|
s/</\</g
|
|
|
|
s/>/\>/g
|
2014-08-08 10:44:37 +08:00
|
|
|
s/((d))/@/g
|
2014-08-01 10:37:32 +08:00
|
|
|
#.
|
|
|
|
# Uncomment the folowing two lines (ss) to log the final output, sent to Doxygen.
|
2014-08-08 10:44:37 +08:00
|
|
|
s/^.*$/OUT : &/w lexicon.log
|
|
|
|
s/^OUT : //
|
2014-08-01 10:37:32 +08:00
|
|
|
#.
|
|
|
|
# Lines are reassembled, so branch to end
|
|
|
|
b
|
2014-08-08 10:44:37 +08:00
|
|
|
# === Main End ===
|
|
|
|
#.
|
|
|
|
#.
|
|
|
|
# === Subroutines ===
|
|
|
|
# Branched to when content requires.
|
2014-08-01 10:37:32 +08:00
|
|
|
#.
|
|
|
|
# Move protected content to hold space and mark up other entities.
|
|
|
|
:protect
|
|
|
|
h
|
|
|
|
# Clear out any content that has already been marked up, to prevent futher
|
|
|
|
# markup on words that should be left alone.
|
|
|
|
#.
|
|
|
|
:patternflush
|
2014-08-08 10:44:37 +08:00
|
|
|
s/\n<@[^}]*[}\\]//
|
|
|
|
s/\\ [^\\]*$/\\/
|
2014-08-01 10:37:32 +08:00
|
|
|
t patternflush
|
2014-08-08 10:44:37 +08:00
|
|
|
s/\n$//g
|
2014-08-01 10:37:32 +08:00
|
|
|
#.
|
|
|
|
# Swap the pattern and hold buffers and remove unmarked lines and extra
|
|
|
|
# characters. Basically the inverse of the 'patternflush' action, with
|
|
|
|
# additional trailing characters stripped.
|
|
|
|
x
|
2014-08-08 10:44:37 +08:00
|
|
|
/^\<@[^}]*$/ ! {
|
|
|
|
s/[^\<]*//
|
|
|
|
s/^ *\\\n//
|
|
|
|
s/[()] \\//
|
|
|
|
s/\n *\\//
|
|
|
|
s/^[^\<][^@][^\\]*//
|
|
|
|
s/\n[]|;) ][^\\]*\\//
|
|
|
|
s/\n[]|;) a-zA-z0-9-][^\\]*$//
|
|
|
|
s/\n[]|;)}]\\//
|
|
|
|
s/\n[]|;)}]\n//
|
|
|
|
s/\n[]|;)}]$//
|
|
|
|
s/[()]$//
|
|
|
|
s/}@curs/}/
|
|
|
|
s/\n@curs$//
|
|
|
|
s/\n[^\<@][^\\]*\\//
|
|
|
|
s/\n[^\<@][^\\]*//
|
|
|
|
s/^\\//
|
|
|
|
s/\n$//g
|
|
|
|
}
|
2014-08-01 10:37:32 +08:00
|
|
|
#.
|
|
|
|
# Swap the buffers back.
|
|
|
|
x
|
|
|
|
#.
|
|
|
|
# A special case. Tidy up after commands.
|
|
|
|
# Redirectors
|
|
|
|
s/\([^{|] *\)|/\1@redr{|}/g
|
2014-08-16 17:18:41 +08:00
|
|
|
s/&$/@redr{\&}/
|
2014-08-08 10:44:37 +08:00
|
|
|
s/\([^{&] *\)&[^a-z]/\1@redr{\&}/g
|
|
|
|
s/\([^{<>^] *\)\([0-9]* *[<>^][<>^]*[^@][a-zA-Z0-9._-]*\)/\1@redr{\2}/g
|
2014-08-16 17:18:41 +08:00
|
|
|
#s/\\}/}\\/g
|
2014-08-01 10:37:32 +08:00
|
|
|
#.
|
|
|
|
# Now we can add in 'unsafe' entities that would be too greedy.
|
|
|
|
# Declared Variables
|
|
|
|
s/\([$%][$%]*\)\([A-Za-z_0-9][A-Za-z_0-9]*\)/@vars{@optr{\1}\2}/g
|
|
|
|
#.
|
|
|
|
# Files
|
2014-08-08 10:44:37 +08:00
|
|
|
s/\([^@]\)\([A-Za-z0-9_-][A-Za-z0-9_-]*\.[a-z0-9*][a-z0-9*]*\)/\1@fsfo{\2}/g
|
2014-08-01 10:37:32 +08:00
|
|
|
#.
|
2014-08-08 10:44:37 +08:00
|
|
|
# Fold Files into Paths
|
|
|
|
s/\(@path{[^}]*\)}@fsfo/\1}@fsfo/
|
2014-08-01 10:37:32 +08:00
|
|
|
#.
|
2014-08-08 10:44:37 +08:00
|
|
|
:commands
|
2014-08-01 10:37:32 +08:00
|
|
|
#.
|
|
|
|
#### This section is built in the Makefile. Just some formatting examples. #####
|
|
|
|
#.
|
|
|
|
# fish commands (cmnd) <- 4 character code that has a Doxygen alias counterpart
|
|
|
|
# template : s/[[:<:]]function[[:>:]]/@cmnd{&}/
|
|
|
|
#.
|
|
|
|
# s,[[:<:]]function[[:>:]],@cmnd{function},g
|
|
|
|
# s,[[:<:]]begin[[:>:]],@cmnd{begin},g
|
|
|
|
# ...
|
|
|
|
#.
|
|
|
|
# fish functions (func)
|
|
|
|
# Populated by 'public' functions' filename.
|
|
|
|
#.
|
|
|
|
# s,[[:<:]]fish_pwd[[:>:]],@func{fish_pwd},g
|
|
|
|
# s,[[:<:]]fish_prompt[[:>:]],@func{fish_prompt},g
|
|
|
|
# ...
|
|
|
|
#.
|
|
|
|
# Shell Binary (sbin)
|
|
|
|
# Populated from completion filenames
|
|
|
|
#.
|
|
|
|
# s,[[:<:]]seq[[:>:]],@sbin{seq},g
|
|
|
|
# s,[[:<:]]rm[[:>:]],@sbin{rm},g
|
|
|
|
# ...
|
|
|
|
#.
|
|
|
|
# Color Variable (clrv)
|
|
|
|
# Populated from __fish_config_interactive.fish
|
|
|
|
# Allows fish's 'special' color variables to be identified
|
|
|
|
#.
|
|
|
|
# s,[[:<:]]fish_color_normal[[:>:]],@clrv{fish_color_normal},g
|
|
|
|
# s,[[:<:]]fish_color_command[[:>:]],@clrv{fish_color_command},g
|
|
|
|
#.
|
|
|
|
# Once all of the commands/functions/variables/special's have been marked up,
|
|
|
|
# branch back to tidy up and collapse the pattern/hold buffers back to a
|
|
|
|
# single line.
|
|
|
|
#.
|
|
|
|
# b tidy
|