File: tkl-modes.sl

package info (click to toggle)
jed-extra 2.5.7-2
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 2,972 kB
  • ctags: 2,490
  • sloc: makefile: 75; ruby: 43; sed: 38; sh: 31
file content (181 lines) | stat: -rw-r--r-- 3,689 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
% tkl-modes.sl: Customization for the list_routines() function 
%               from tokenlist.sl
%               
% Copyright (c) 2006 Marko Mahnic
% Released under the terms of the GNU General Public License (ver. 2 or later)
%
% Versions:
%   2006-03-29  outsourced from tokenlist.sl
%   2006-11-17  G. Milde
%               removed rst definitions (in rst.sl since version 1.4)
%               added php definitions
%               use raw strings for latex definitions
%   2006-12-19  Marko Mahnic
%               changed the interface to use _list_routines_setup
%               (the old interface still works)
%   2007-05-09  Marko Mahnic
%               renamed list_regex -> list_regexp
%               fixed PHP and Python setup

autoload("tkl_sort_by_value", "tokenlist");
autoload("tkl_sort_by_line", "tokenlist");
provide("tkl-modes");


%%  
%%        C
%%  
private define c_list_routines_extract (nRegexp)
{
   push_spot();
   if (ffind_char(';')) {
      pop_spot();
      return Null_String;
   }
   pop_spot();
   if (nRegexp == 0) {
      () = ffind_char ('(');         % Extract function name
      bskip_chars (" \t");
      () = bfind ("::");             % Skip operator header
      bskip_chars ("a-zA-Z0-9_:");

      push_mark();
      eol();
      return (bufsubstr());
   }
   else if (nRegexp == 1) {
      push_mark();
      eol();
      return (bufsubstr());
   }
   else return (line_as_string());
   
   return Null_String;
}

define c_list_routines_setup (opt)
{
   opt.list_regexp = { 
      "^[a-zA-Z_][a-zA-Z0-9_]*[ \t*&].*(",  % Ordinary function or method
      "^[a-zA-Z_][a-zA-Z0-9_]*::~.+("       % Destructor
   };
   opt.fn_extract = &c_list_routines_extract;
   opt.onlistcreated = &tkl_sort_by_value;
}

%%  
%%        SLang
%%  

% Discard the public|static|private part of the definition
private define slang_list_routines_extract (nRegexp)
{
   bol();
   % skip static, public
   if (nRegexp >= 2) {
      skip_chars ("a-z");
      skip_chars (" ");
   }
   push_mark();
   eol();
   return (strtrim(bufsubstr()));
}

define slang_list_routines_setup(opt)
{
   opt.list_regexp = { 
      "^define[ \t]",
      "^variable[ \t]",
      "^public[ \t]+[dv]",
      "^private[ \t]+[dv]",
      "^static[ \t]+[dv]"
   };
   opt.fn_extract = &slang_list_routines_extract;
   opt.onlistcreated = &tkl_sort_by_value;
}


%%  
%%        HTML
%% 
define html_list_routines_setup(opt)
{
   opt.list_regexp = { 
    "^[ \t]*<H[1-9][ \t>]",
    "^[ \t]*<TABLE[ \t>]",
    "^[ \t]*<FORM[ \t>]"
   };
}

%%  
%%        LaTeX
%%  
define latex_list_routines_setup(opt)
{
   opt.list_regexp = { 
    "\\section"R,
    "\\\(sub\)*section"R,
    "\\subsubsection"R
   };
}

%%
%% PHP
%%
define php_list_routines_setup(opt)
{
   opt.list_regexp = { 
      "^class[ \t]",
      "^function[ \t]"
   };
}

%%  
%%        Python
%%  
define python_list_routines_setup(opt)
{
   opt.list_regexp = { 
      "^[ \t]*def[ \t]",
       "^[ \t]*class[ \t]"
   };
   opt.onlistcreated = &tkl_sort_by_line;
}

#iffalse
%%  
%%  New C
%%  Might work better for C
%%  Works worse for C++      
%%

autoload("c_bskip_over_comment", "cmode");

private define do_c_find_candidate(i)
{
   return bol_fsearch("{");
}

variable c_list_routines_regexp = 
{
   &do_c_find_candidate
};

define c_list_routines_extract (nRegexp)
{
   if (0 != parse_to_point ()) return Null_String;
   c_bskip_over_comment (1);
   if (blooking_at (")"))
   {
      go_left_1 ();
      if (1 == find_matching_delimiter (')'))
      {
         c_bskip_over_comment (1);
         bskip_white();
         if (bolp()) go_up(1);
         return line_as_string();
      }
   }
   return Null_String;
}
#endif