-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvisual-basic-mode.el
More file actions
1810 lines (1573 loc) · 67.4 KB
/
visual-basic-mode.el
File metadata and controls
1810 lines (1573 loc) · 67.4 KB
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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
;;; visual-basic-mode.el --- A mode for editing Visual Basic programs.
;; This is free software.
;; Modified version of Fred White's visual-basic-mode.el
;; Copyright (C) 1996 Fred White <fwhite@alum.mit.edu>
;; Copyright (C) 1998 Free Software Foundation, Inc.
;; (additions by Dave Love)
;; Copyright (C) 2008-2009 Free Software Foundation, Inc.
;; (additions by Randolph Fritz and Vincent Belaiche (VB1) )
;; Author: Fred White <fwhite@alum.mit.edu>
;; Adapted-by: Dave Love <d.love@dl.ac.uk>
;; : Kevin Whitefoot <kevin.whitefoot@nopow.abb.no>
;; : Randolph M. Fritz <randolph@panix.com>
;; : Vincent Belaiche (VB1) <vincentb1@users.sourceforge.net>
;; https://github.com/vincentb1
;; http://www.emacswiki.org/Vincent%20Bela%c3%afche
;; Serial Version: %Id: 48%
;; Keywords: languages, basic, Evil
;; X-URL: http://www.emacswiki.org/cgi-bin/wiki/visual-basic-mode.el
;; (Old) LCD Archive Entry:
;; basic-mode|Fred White|fwhite@alum.mit.edu|
;; A mode for editing Visual Basic programs.|
;; 18-Apr-96|1.0|~/modes/basic-mode.el.Z|
;; This file is NOT part of GNU Emacs but the same permissions apply.
;;
;; GNU Emacs is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published
;; by the Free Software Foundation; either version 2, or (at your
;; option) any later version.
;;
;; GNU Emacs is distributed in the hope that it will be useful, but
;; WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
;; General Public License for more details.
;;
;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs; see the file COPYING. If not, write to the
;; Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
;; This program is free software; you can redistribute it and/or
;; modify it under the terms of the GNU General Public License as
;; published by the Free Software Foundation; either version 2 of the
;; License, or (at your option) any later version.
;;; Commentary:
;; Purpose of this package:
;; This is a mode for editing programs written in The World's Most
;; Successful Programming Language. It features automatic
;; indentation, font locking, keyword capitalization, and some minor
;; convenience functions.
;; Installation instructions
;; Put visual-basic-mode.el somewhere in your path, compile it, and add
;; the following to your init file:
;; (autoload 'visual-basic-mode "visual-basic-mode" "Visual Basic mode." t)
;; (push '("\\.\\(?:frm\\|\\(?:ba\\|cl\\|vb\\)s\\)\\'" . visual-basic-mode)
;; auto-mode-alist)
;;
;; If you are doing Rhino scripts, add instead:
;; (push '("\\.\\(?:frm\\|\\(?:ba\\|cl\\|vb\\)s\\|rvb\\)\\'" . visual-basic-mode)
;; auto-mode-alist)
;; If you had visual-basic-mode already installed, you may need to call
;; visual-basic-upgrade-keyword-abbrev-table the first time that
;; visual-basic-mode is loaded.
;; Of course, under Windows 3.1, you'll have to name this file
;; something shorter than visual-basic-mode.el
;; Revisions:
;; 1.0 18-Apr-96 Initial version
;; 1.1 Accomodate Emacs 19.29+ font-lock-defaults
;; Simon Marshall <Simon.Marshall@esrin.esa.it>
;; 1.2 Rename to visual-basic-mode
;; 1.3 Fix some indentation bugs.
;; 1.3+ Changes by Dave Love: [No attempt at compatibility with
;; anything other than Emacs 20, sorry, but little attempt to
;; sanitize for Emacs 20 specifically.]
;; Change `_' syntax only for font-lock and imenu, not generally;
;; provide levels of font-locking in the current fashion;
;; font-lock case-insensitively; use regexp-opt with the font-lok
;; keywords; imenu support; `visual-basic-split-line', bound to
;; C-M-j; account for single-statement `if' in indentation; add
;; keyword "Global"; use local-write-file-hooks, not
;; write-file-hooks.
;; 1.4 September 1998
;; 1.4 KJW Add begin..end, add extra keywords
;; Add customisation for single line if. Disallow by default.
;; Fix if regexp to require whitespace after if and require then.
;; Add more VB keywords. Make begin..end work as if..endif so
;; that forms are formatted correctly.
;; 1.4.1 KJW Merged Dave Love and KJW versions.
;; Added keywords suggested by Mickey Ferguson
;; <MFerguson@peinc.com>
;; Fixed imenu variable to find private variables and enums
;; Changed syntax class of =, <, > to punctuation to allow dynamic
;; abbreviations to pick up only the word at point rather than the
;; whole expression.
;; Fixed bug introduced by KJW adding suport for begin...end in
;; forms whereby a single end outdented.
;; Partially fixed failure to recognise if statements with
;; continuations (still fails on 'single line' if with
;; continuation, ugh).
;; 1.4.2 RF added "class" and "null" keywords, "Rhino" script note.
;; 1.4.3 VB1 added
;; 1) function visual-basic-if-not-on-single-line to recognize single line
;; if statements, even when line is broken. variable
;; visual-basic-allow-single-line-if default set to t again.
;; 2) use of 'words in calling regexp-opt rather than concat \\< ...\\>
;; 3) new keywords Preserve and Explicit
;; 1.4.4 VB1 added function visual-basic-close-block
;; 1.4.5 VB1, (expand-abbrev) within (save-excusion...)
;; 1.4.6 VB1 correct visual-basic-close-block (single line If case)
;; 1.4.7 VB1 correct visual-basic-close-block (For/Next)
;; 1.4.8 VB1 correct visual-basic-close-block (Property, + add With /End With)
;; add command visual-basic-insert-item
;; 1.4.8 2010-05-15 Lennart Borgman:
;; - Minor corrections
;; 1.4.9 VB1 - make customizable variable accessible through defcustom
;; - add support for `Select Case' in visual-basic-insert-item
;; - reword of the `Dim' case in visual-basic-insert-item
;; 1.4.9b Lennart Borgman+VB1: correct abbreviation and support `_' as a valid
;; symbol character
;; 1.4.10 VB1 - Add punctuation syntax for operators
;; - create visual-basic-check-style
;; - improve idiom detection
;; 1.4.10b,c VB1 -improve visual-basic-check-style
;; 1.4.10d VB1 -correct font lock keywords for case
;; -improve visual-basic-check-style + add highlight overlay
;; 1.4.11 Wang Yao - correct the regular expression for imenu
;; - remove the string-to-char for imenu-syntax-alist, for xemacs error
;; - change the condition of visual-basic-enable-font-lock which prevents emacs from running in command-line mode when the emacs-version is 19.29
;; - correct the implement of droping tailing comment in visual-basic-if-not-on-single-line
;; 1.4.12 VB1 - add visual-basic-propertize-attribute
;; 1.4.13 VB1 - set default indentation to 3 char to stick to http://en.wikibooks.org/wiki/Visual_Basic/Coding_Standards#White_Space_and_Indentation
;; 1.5 VB1 - Make the indentation of defun's recursive, i.e. a Sub defined within a Class will be indented by one indentatiation.
;;
;; Notes:
;; Dave Love
;; BTW, here's a script for making tags tables that I (Dave Love) have
;; used with reasonable success. It assumes a hacked version of etags
;; with support for case-folded regexps. I think this is now in the
;; development version at <URL:ftp://fly.cnuce.cnr.it/pub/> and should
;; make it into Emacs after 20.4.
;; #! /bin/sh
;; # etags-vb: (so-called) Visual (so-called) Basic TAGS generation.
;; # Dave Love <d.love@dl.ac.uk>. Public domain.
;; # 1997-11-21
;; if [ $# -lt 1 ]; then
;; echo "Usage: `basename $0` [etags options] VBfile ... [etags options] " 1>&2
;; exit 1
;; fi
;; if [ $1 = "--help" ] || [ $1 = "-h" ]; then
;; echo "Usage: `basename $0` [etags options] VBfile ... [etags options]
;; "
;; etags --help
;; fi
;; exec etags --lang=none -c '/\(global\|public\)[ \t]+\(\(const\|type\)[ \t]+\)*\([a-z_0-9]+\)/\4/' \
;; -c '/public[ \t]+\(sub\|function\|class\)[ \t]+\([a-z_0-9]+\)/\2/' \
;; "$@"
;; End Notes Dave Love
;; Known bugs:
;; Doesn't know about ":" separated stmts
;; todo:
;; fwd/back-compound-statement
;; completion over OCX methods and properties.
;; IDE integration
;; Change behaviour of ESC-q to recognise words used as paragraph
;; titles and prevent them being dragged into the previous
;; paragraph.
;; etc.
;;; History:
;;
;;; Code:
(eval-when-compile (require 'cl))
(defvar visual-basic-xemacs-p (string-match "XEmacs\\|Lucid" (emacs-version)))
(defvar visual-basic-winemacs-p (string-match "Win-Emacs" (emacs-version)))
(defvar visual-basic-win32-p (eq window-system 'w32))
;; Variables you may want to customize.
(defgroup visual-basic nil
"Customization of the Visual Basic mode."
:link '(custom-group-link :tag "Font Lock Faces group" font-lock-faces)
:group 'languages )
(defcustom visual-basic-mode-indent 3
"*Default indentation per nesting level.
Default value is 3 as per http://en.wikibooks.org/wiki/Visual_Basic/Coding_Standards#White_Space_and_Indentation."
:type 'integer
:group 'visual-basic)
(defcustom visual-basic-fontify-p t
"*Whether to fontify Basic buffers."
:type 'boolean
:group 'visual-basic)
(defcustom visual-basic-capitalize-keywords-p t
"*Whether to capitalize BASIC keywords."
:type 'boolean
:group 'visual-basic)
(defcustom visual-basic-wild-files "*.frm *.bas *.cls"
"*Wildcard pattern for BASIC source files."
:type 'string
:group 'visual-basic)
(defcustom visual-basic-ide-pathname nil
"*The full pathname of your Visual Basic exe file, if any."
:type '(choice
(const nil :tag "no IDE available" )
(file :must-match t :tag "IDE exe path" ))
:group 'visual-basic)
(defcustom visual-basic-allow-single-line-if t
"*Whether to allow single line if."
:type 'boolean
:group 'visual-basic)
(defcustom visual-basic-auto-check-style-level -1
"Tune what style error are automatically corrected by function
`visual-basic-check-style'. The higher this number, the more
types of errors are automatically corrected.
* -1 : all errors correction need confirmation by user
* 0 : punctuation errors are automatically corrected"
:type 'integer
:group 'visual-basic)
(defcustom visual-basic-variable-scope-prefix-re
"[gm]?"
"Variable naming convention, scope prefix regexp. Please refer
to
http://en.wikibooks.org/wiki/Visual_Basic/Coding_Standards. This
is used by function `visual-basic-propertize-attribute'.
Note: shall not contain any \\( \\) (use \\(?: if need be)."
:type 'regexp
:group 'visual-basic
)
(defcustom visual-basic-variable-type-prefix-re
(regexp-opt '("i" ; integer
"l" ; long
"flt"; single or double
"obj" "o"; object
"v" ; variant
"dbl" "sng"; double single
"s"; string
) t)
"Variable naming convention, type prefix regexp. Please refer
to
http://en.wikibooks.org/wiki/Visual_Basic/Coding_Standards. This
is used by function `visual-basic-propertize-attribute'.
Note: shall not contain any \\( \\) (use \\(?: if need be)."
:type 'regexp
:group 'visual-basic
)
(defvar visual-basic-defn-templates
(list "Public Sub ()\nEnd Sub\n\n"
"Public Function () As Variant\nEnd Function\n\n"
"Public Property Get ()\nEnd Property\n\n")
"*List of function templates though which `visual-basic-new-sub' cycles.")
(defvar visual-basic-imenu-generic-expression
'((nil "^\\s-*\\(public\\|private\\)*\\s-*\\(declare\\s-+\\)*\\(sub\\|function\\)\\s-+\\(\\(?:\\sw\\|\\s_\\)+\\>\\)"
4)
("Constants"
"^\\s-*\\(private\\|public\\|global\\)*\\s-*\\(const\\s-+\\)\\(\\(?:\\sw\\|\\s_\\)+\\>\\s-*=\\s-*.+\\)\\($\\|'\\)"
3)
("Variables"
"^\\(private\\|public\\|global\\|dim\\)+\\s-+\\(\\(?:\\sw\\|\\s_\\)+\\>\\s-+as\\s-+\\(?:\\sw\\|\\s_\\)+\\>\\)"
2)
("Types" "^\\(public\\s-+\\)*type\\s-+\\(\\(?:\\sw\\|\\s_\\)+\\)" 2)))
(defvar visual-basic-mode-syntax-table nil)
(if visual-basic-mode-syntax-table
()
(setq visual-basic-mode-syntax-table (make-syntax-table))
(modify-syntax-entry ?\' "\<" visual-basic-mode-syntax-table) ; Comment starter
(modify-syntax-entry ?\n ">" visual-basic-mode-syntax-table)
(modify-syntax-entry ?\\ "w" visual-basic-mode-syntax-table)
(modify-syntax-entry ?_ "_" visual-basic-mode-syntax-table)
; Make operators puncutation so that regexp search \_< and \_> works properly
(modify-syntax-entry ?+ "." visual-basic-mode-syntax-table)
(modify-syntax-entry ?- "." visual-basic-mode-syntax-table)
(modify-syntax-entry ?* "." visual-basic-mode-syntax-table)
(modify-syntax-entry ?/ "." visual-basic-mode-syntax-table)
(modify-syntax-entry ?\\ "." visual-basic-mode-syntax-table)
; Make =, etc., punctuation so that dynamic abbreviations work properly
(modify-syntax-entry ?\= "." visual-basic-mode-syntax-table)
(modify-syntax-entry ?\< "." visual-basic-mode-syntax-table)
(modify-syntax-entry ?\> "." visual-basic-mode-syntax-table))
(defvar visual-basic-mode-map nil)
(if visual-basic-mode-map
()
(setq visual-basic-mode-map (make-sparse-keymap))
(define-key visual-basic-mode-map "\t" 'visual-basic-indent-line)
(define-key visual-basic-mode-map "\r" 'visual-basic-newline-and-indent)
(define-key visual-basic-mode-map "\M-\r" 'visual-basic-insert-item)
(define-key visual-basic-mode-map "\C-c\C-j" 'visual-basic-insert-item)
(define-key visual-basic-mode-map "\M-\C-a" 'visual-basic-beginning-of-defun)
(define-key visual-basic-mode-map "\M-\C-e" 'visual-basic-end-of-defun)
(define-key visual-basic-mode-map "\M-\C-h" 'visual-basic-mark-defun)
(define-key visual-basic-mode-map "\M-\C-\\" 'visual-basic-indent-region)
(define-key visual-basic-mode-map "\M-q" 'visual-basic-fill-or-indent)
(define-key visual-basic-mode-map "\M-\C-j" 'visual-basic-split-line)
(define-key visual-basic-mode-map "\C-c]" 'visual-basic-close-block)
(cond (visual-basic-winemacs-p
(define-key visual-basic-mode-map '(control C) 'visual-basic-start-ide))
(visual-basic-win32-p
(define-key visual-basic-mode-map (read "[?\\S-\\C-c]") 'visual-basic-start-ide)))
(if visual-basic-xemacs-p
(progn
(define-key visual-basic-mode-map "\M-G" 'visual-basic-grep)
(define-key visual-basic-mode-map '(meta backspace) 'backward-kill-word)
(define-key visual-basic-mode-map '(control meta /) 'visual-basic-new-sub))))
;; These abbrevs are valid only in a code context.
(defvar visual-basic-mode-abbrev-table nil)
(defvar visual-basic-mode-hook ())
;; Is there a way to case-fold all regexp matches?
;; Change KJW Add enum, , change matching from 0 or more to zero or one for public etc.
(eval-and-compile
(progn
(defconst visual-basic-defun-start-regexp-formatter
"^[ \t]*\\([Pp]ublic \\|[Pp]rivate \\|[Ss]tatic\\|[Ff]riend \\)?\\(%s\\)[ \t]+\\(\\w+\\)[ \t]*(?")
(defconst visual-basic-defun-start-regexp
(format visual-basic-defun-start-regexp-formatter "[Ss]ub\\|[Ff]unction\\|[Pp]roperty +[GgSsLl]et\\|[Tt]ype\\|[Ee]num\\|[Cc]lass"))))
(defconst visual-basic-defun-end-regexp-formatter
"^[ \t]*[Ee]nd +\\(%s\\)")
(defconst visual-basic-defun-end-regexp
(format visual-basic-defun-end-regexp-formatter
"[Ss]ub\\|[Ff]unction\\|[Pp]roperty\\|[Tt]ype\\|[Ee]num\\|[Cc]lass"))
(defconst visual-basic-dim-regexp
"^[ \t]*\\([Cc]onst\\|[Dd]im\\|[Pp]rivate\\|[Pp]ublic\\)\\_>" )
(defconst visual-basic-lettable-type-regexp
(concat "\\`"
(regexp-opt '("Integer" "Long" "Variant" "Double" "Single" "Boolean") t)
"\\'"))
;; Includes the compile-time #if variation.
;; KJW fixed if to require a whitespace so as to avoid matching, for
;; instance, iFileName and to require then.
;; Two versions; one recognizes single line if just as though it were
;; a multi-line and the other does not. Modified again to remove the
;; requirement for then so as to allow it to match if statements that
;; have continuations -- VB1 further elaborated on this for single line
;; if statement to be recognized on broken lines.
;;(defconst visual-basic-if-regexp
;; "^[ \t]*#?[Ii]f[ \t]+.*[ \t]+[Tt]hen[ \t]*.*\\('\\|$\\)")
(defconst visual-basic-if-regexp
"^[ \t]*#?[Ii]f[ \t]+.*[ \t_]+")
(defconst visual-basic-ifthen-regexp "^[ \t]*#?[Ii]f.+\\<[Tt]hen\\>\\s-\\S-+")
(defconst visual-basic-else-regexp "^[ \t]*#?[Ee]lse\\([Ii]f\\)?")
(defconst visual-basic-endif-regexp "[ \t]*#?[Ee]nd[ \t]*[Ii]f")
(defconst visual-basic-looked-at-continuation-regexp "_\\s-*$")
(defconst visual-basic-continuation-regexp
(concat "^\\(.*\\([^_[:alnum:]]\\|[^[:alpha:]_][0-9]+\\)\\)?" visual-basic-looked-at-continuation-regexp))
(eval-and-compile
(defconst visual-basic-label-regexp "^[ \t]*[a-zA-Z0-9_]+:$"))
(defconst visual-basic-select-regexp "^[ \t]*[Ss]elect[ \t]+[Cc]ase\\_>")
(defconst visual-basic-case-regexp "^\\([ \t]*\\)[Cc]ase\\_>")
(defconst visual-basic-case-else-regexp "^\\([ \t]*\\)[Cc]ase\\(\\s-+[Ee]lse\\)\\_>")
(defconst visual-basic-select-end-regexp "^\\([ \t]*\\)[Ee]nd[ \t]+[Ss]elect\\_>")
(defconst visual-basic-for-regexp "^[ \t]*[Ff]or\\b")
(defconst visual-basic-next-regexp "^[ \t]*[Nn]ext\\b")
(defconst visual-basic-do-regexp "^[ \t]*[Dd]o\\b")
(defconst visual-basic-loop-regexp "^[ \t]*[Ll]oop\\b")
(defconst visual-basic-while-regexp "^[ \t]*[Ww]hile\\b")
(defconst visual-basic-wend-regexp "^[ \t]*[Ww]end\\b")
;; Added KJW Begin..end for forms
(defconst visual-basic-begin-regexp "^[ \t]*[Bb]egin)?")
;; This has created a bug. End on its own in code should not outdent.
;; How can we fix this? They are used in separate Lisp expressions so
;; add another one.
(defconst visual-basic-end-begin-regexp "^[ \t]*[Ee]nd")
(defconst visual-basic-with-regexp "^[ \t]*[Ww]ith\\b")
(defconst visual-basic-end-with-regexp "^[ \t]*[Ee]nd[ \t]+[Ww]ith\\b")
(defconst visual-basic-blank-regexp "^[ \t]*$")
(defconst visual-basic-comment-regexp "^[ \t]*\\s<.*$")
;; This is some approximation of the set of reserved words in Visual Basic.
(eval-and-compile
(defvar visual-basic-all-keywords
'("Add" "Aggregate" "And" "App" "AppActivate" "Application" "Array" "As"
"Asc" "AscB" "Atn" "Attribute"
"Beep" "Begin" "BeginTrans" "Boolean" "ByVal" "ByRef"
"CBool" "CByte" "CCur"
"CDate" "CDbl" "CInt" "CLng" "CSng" "CStr" "CVErr" "CVar" "Call"
"Case" "ChDir" "ChDrive" "Character" "Choose" "Chr" "ChrB" "Class"
"ClassModule" "Clipboard" "Close" "Collection" "Column" "Columns"
"Command" "CommitTrans" "CompactDatabase" "Component" "Components"
"Const" "Container" "Containers" "Cos" "CreateDatabase" "CreateObject"
"CurDir" "Currency"
"DBEngine" "DDB" "Data" "Database" "Databases"
"Date" "DateAdd" "DateDiff" "DatePart" "DateSerial" "DateValue" "Day"
"Debug" "Declare" "Deftype" "DeleteSetting" "Dim" "Dir" "Do"
"DoEvents" "Domain"
"Double" "Dynaset" "EOF" "Each" "Else" "Empty" "End" "EndProperty"
"Enum" "Environ" "Erase" "Err" "Error" "Exit" "Exp" "Explicit" "FV" "False" "Field"
"Fields" "FileAttr" "FileCopy" "FileDateTime" "FileLen" "Fix" "Font" "For"
"Form" "FormTemplate" "Format" "FormatCurrency" "FormatDateTime" "FormatNumber"
"FormatPercent" "Forms" "FreeFile" "FreeLocks" "Friend" "Function"
"Get" "GetAllSettings" "GetAttr" "GetObject" "GetSetting" "Global" "GoSub"
"GoTo" "Group" "Groups" "Hex" "Hour" "IIf" "IMEStatus" "IPmt" "IRR"
"If" "Implements" "InStr" "Input" "Int" "Integer" "Is" "IsArray" "IsDate"
"IsEmpty" "IsError" "IsMissing" "IsNull" "IsNumeric" "IsObject" "Kill"
"LBound" "LCase" "LOF" "LSet" "LTrim" "Left" "Len" "Let" "Like" "Line"
"Load" "LoadPicture" "LoadResData" "LoadResPicture" "LoadResString" "Loc"
"Lock" "Log" "Long" "Loop" "MDIForm" "MIRR" "Me" "MenuItems"
"MenuLine" "Mid" "Minute" "MkDir" "Month" "MsgBox" "NPV" "NPer" "Name"
"New" "Next" "Not" "Now" "Nothing" "Null" "Object" "Oct" "On" "Open"
"OpenDatabase"
"Operator" "Option" "Optional"
"Or" "PPmt" "PV" "Parameter" "Parameters" "Partition"
"Picture" "Pmt" "Preserve" "Print" "Printer" "Printers" "Private"
"ProjectTemplate" "Property"
"Properties" "Public" "Put" "QBColor" "QueryDef" "QueryDefs"
"RSet" "RTrim" "Randomize" "Rate" "ReDim" "Recordset" "Recordsets"
"RegisterDatabase" "Relation" "Relations" "Rem" "RepairDatabase"
"Reset" "Resume" "Return" "Right" "RmDir" "Rnd" "Rollback" "RowBuffer"
"SLN" "SYD" "SavePicture" "SaveSetting" "Screen" "Second" "Seek"
"SelBookmarks" "Select" "SelectedComponents" "SendKeys" "Set"
"SetAttr" "SetDataAccessOption" "SetDefaultWorkspace" "Sgn" "Shell"
"Sin" "Single" "Snapshot" "Space" "Spc" "Sqr" "Static" "Step" "Stop" "Str"
"StrComp" "StrConv" "String" "Sub" "SubMenu" "Switch" "Tab" "Table"
"TableDef" "TableDefs" "Tan" "Then" "Time" "TimeSerial" "TimeValue"
"Timer" "To" "Trim" "True" "Type" "TypeName" "UBound" "UCase" "Unload"
"Unlock" "Val" "Variant" "VarType" "Verb" "Weekday" "Wend"
"While" "Width" "With" "Workspace" "Workspaces" "Write" "Year")))
(defvar visual-basic-font-lock-keywords-1
(eval-when-compile
(list
;; Names of functions.
(list visual-basic-defun-start-regexp
'(1 font-lock-keyword-face nil t)
'(2 font-lock-keyword-face nil t)
'(3 font-lock-function-name-face))
;; Statement labels
(cons visual-basic-label-regexp 'font-lock-keyword-face)
;; Case values
;; String-valued cases get font-lock-string-face regardless.
(list "^[ \t]*case[ \t]+\\([^:'\n]+\\)" 1 'font-lock-keyword-face t)
;; Any keywords you like.
(list (regexp-opt
'("Dim" "If" "Then" "Else" "ElseIf" "End If") 'words)
1 'font-lock-keyword-face))))
(defvar visual-basic-font-lock-keywords-2
(append visual-basic-font-lock-keywords-1
(eval-when-compile
`((, (regexp-opt visual-basic-all-keywords 'words)
1 font-lock-keyword-face)))))
(defvar visual-basic-font-lock-keywords visual-basic-font-lock-keywords-1)
(put 'visual-basic-mode 'font-lock-keywords 'visual-basic-font-lock-keywords)
;;;###autoload
(defun visual-basic-mode ()
"A mode for editing Microsoft Visual Basic programs.
Features automatic indentation, font locking, keyword capitalization,
and some minor convenience functions.
Commands:
\\{visual-basic-mode-map}"
(interactive)
(kill-all-local-variables)
(use-local-map visual-basic-mode-map)
(setq major-mode 'visual-basic-mode)
(setq mode-name "Visual Basic")
(set-syntax-table visual-basic-mode-syntax-table)
;; This should be the users choice
;;(add-hook 'local-write-file-hooks 'visual-basic-untabify)
(setq local-abbrev-table visual-basic-mode-abbrev-table)
(if visual-basic-capitalize-keywords-p
(progn
;;(make-local-variable 'pre-abbrev-expand-hook)
;;(add-hook 'pre-abbrev-expand-hook 'visual-basic-pre-abbrev-expand-hook)
(add-hook 'abbrev-expand-functions 'visual-basic-abbrev-expand-function nil t)
(abbrev-mode 1)))
(make-local-variable 'comment-start)
(setq comment-start "' ")
(make-local-variable 'comment-start-skip)
(setq comment-start-skip "'+ *")
(make-local-variable 'comment-column)
(setq comment-column 40)
(make-local-variable 'comment-end)
(setq comment-end "")
(make-local-variable 'indent-line-function)
(setq indent-line-function 'visual-basic-indent-line)
(if visual-basic-fontify-p
(visual-basic-enable-font-lock))
(make-local-variable 'imenu-generic-expression)
(setq imenu-generic-expression visual-basic-imenu-generic-expression)
(set (make-local-variable 'imenu-syntax-alist) `(("_" . "w")))
(set (make-local-variable 'imenu-case-fold-search) t)
;;(make-local-variable 'visual-basic-associated-files)
;; doing this here means we need not check to see if it is bound later.
(add-hook 'find-file-hooks 'visual-basic-load-associated-files)
(run-hooks 'visual-basic-mode-hook))
(defun visual-basic-enable-font-lock ()
"Enable font locking."
;; Emacs 19.29 requires a window-system else font-lock-mode errs out.
(cond ((or visual-basic-xemacs-p window-system (not (string-equal (emacs-version) "19.29")))
;; In win-emacs this sets font-lock-keywords back to nil!
(if visual-basic-winemacs-p
(font-lock-mode 1))
;; Accomodate emacs 19.29+
;; From: Simon Marshall <Simon.Marshall@esrin.esa.it>
(cond ((boundp 'font-lock-defaults)
(make-local-variable 'font-lock-defaults)
(setq font-lock-defaults
`((visual-basic-font-lock-keywords
visual-basic-font-lock-keywords-1
visual-basic-font-lock-keywords-2)
nil t ((,(string-to-char "_") . "w")))))
(t
(make-local-variable 'font-lock-keywords)
(setq font-lock-keywords visual-basic-font-lock-keywords)))
(if visual-basic-winemacs-p
(font-lock-ensure)
(font-lock-mode 1)))))
;; KJW should add some odds and bobs here to cover "end if" one way
;; could be to create the abbreviations by removing whitespace then we
;; could put "end if", "end with" and so on in the keyword table
;; Another idea would be to make it intelligent enough to substitute
;; the correct end for the construct (with, select, if)
;; Is this what the abbrev table hook entry is for?
(defun visual-basic-construct-keyword-abbrev-table ()
"Construction abbreviation table from list of keywords."
(if visual-basic-mode-abbrev-table
nil
(let ((words visual-basic-all-keywords)
(word nil)
(list nil))
(while words
(setq word (car words)
words (cdr words))
(setq list (cons (list (downcase word) word) list)))
(define-abbrev-table 'visual-basic-mode-abbrev-table list))))
;; Would like to do this at compile-time.
(visual-basic-construct-keyword-abbrev-table)
(defun visual-basic-upgrade-keyword-abbrev-table ()
"Use this in case of upgrading visual-basic-mode.el."
(interactive)
(let ((words visual-basic-all-keywords)
(word nil)
(list nil))
(while words
(setq word (car words)
words (cdr words))
(setq list (cons (list (downcase word) word) list)))
(define-abbrev-table 'visual-basic-mode-abbrev-table list)))
(defun visual-basic-in-code-context-p ()
"Predicate true when pointer is in code context."
(save-match-data
(if (fboundp 'buffer-syntactic-context) ; XEmacs function.
(null (buffer-syntactic-context))
;; Attempt to simulate buffer-syntactic-context
;; I don't know how reliable this is.
(let* ((beg (save-excursion
(beginning-of-line)
(point)))
(list
(parse-partial-sexp beg (point))))
(and (null (nth 3 list)) ; inside string.
(null (nth 4 list))))))) ; inside comment
(defun visual-basic-abbrev-expand-function (expand-fun)
"Expansion of abbreviations. EXPAND-FUN is called at the end of this function."
;; Allow our abbrevs only in a code context.
(setq local-abbrev-table
(if (visual-basic-in-code-context-p)
visual-basic-mode-abbrev-table))
(funcall expand-fun))
(defun visual-basic-newline-and-indent (&optional count)
"Insert a newline, updating indentation. Argument COUNT is ignored."
(interactive)
(save-excursion
(expand-abbrev)
(visual-basic-indent-line))
(call-interactively 'newline-and-indent))
(defun visual-basic-beginning-of-defun ()
"Set the pointer at the beginning of the Sub/Function/Property within which the pointer is located."
(interactive)
(re-search-backward visual-basic-defun-start-regexp))
(defun visual-basic-end-of-defun ()
"Set the pointer at the beginning of the Sub/Function/Property within which the pointer is located."
(interactive)
(re-search-forward visual-basic-defun-end-regexp))
(defun visual-basic-mark-defun ()
"Set the region pointer around Sub/Function/Property within which the pointer is located."
(interactive)
(beginning-of-line)
(visual-basic-end-of-defun)
(set-mark (point))
(visual-basic-beginning-of-defun)
(if visual-basic-xemacs-p
(zmacs-activate-region)))
(defun visual-basic-indent-defun ()
"Indent the function within which the pointer is located. This has a border effect on mark."
;; VB1 to Lennart: is border effect on mark an issue ?
(interactive)
(save-excursion
(visual-basic-mark-defun)
(call-interactively 'visual-basic-indent-region)))
(defun visual-basic-fill-long-comment ()
"Fills block of comment lines around point."
;; Derived from code in ilisp-ext.el.
(interactive)
(save-excursion
(beginning-of-line)
(let ((comment-re "^[ \t]*\\s<+[ \t]*"))
(if (looking-at comment-re)
(let ((fill-prefix
(buffer-substring
(progn (beginning-of-line) (point))
(match-end 0))))
(while (and (not (bobp))
(looking-at visual-basic-comment-regexp))
(forward-line -1))
(if (not (bobp)) (forward-line 1))
(let ((start (point)))
;; Make all the line prefixes the same.
(while (and (not (eobp))
(looking-at comment-re))
(replace-match fill-prefix)
(forward-line 1))
(if (not (eobp))
(beginning-of-line))
;; Fill using fill-prefix
(fill-region-as-paragraph start (point))))))))
(defun visual-basic-fill-or-indent ()
"Fill long comment around point, if any, else indent current definition."
(interactive)
(cond ((save-excursion
(beginning-of-line)
(looking-at visual-basic-comment-regexp))
(visual-basic-fill-long-comment))
(t
(visual-basic-indent-defun))))
(defun visual-basic-new-sub ()
"Insert template for a new subroutine. Repeat to cycle through alternatives."
(interactive)
(beginning-of-line)
(let ((templates (cons visual-basic-blank-regexp
visual-basic-defn-templates))
(tem nil)
(bound (point)))
(while templates
(setq tem (car templates)
templates (cdr templates))
(cond ((looking-at tem)
(replace-match (or (car templates)
""))
(setq templates nil))))
(search-backward "()" bound t)))
(defun visual-basic-untabify ()
"Do not allow any tabs into the file."
(if (eq major-mode 'visual-basic-mode)
(untabify (point-min) (point-max)))
nil)
(defun visual-basic-default-tag ()
"Return default TAG at point to search by grep."
;; VB1 to Lennart: is border effect on match-data an issue
(if (and (not (bobp))
(save-excursion
(backward-sexp)
(looking-at "\\w")))
(backward-word 1))
(let ((s (point))
(e (save-excursion
(forward-sexp)
(point))))
(buffer-substring s e)))
(defun visual-basic-grep (tag)
"Search BASIC source files in current directory for TAG."
(interactive
(list (let* ((def (visual-basic-default-tag))
(tag (read-string
(format "Grep for [%s]: " def))))
(if (string= tag "") def tag))))
(grep (format "grep -n %s %s" tag visual-basic-wild-files)))
;;; IDE Connection.
(defun visual-basic-buffer-project-file ()
"Return a guess as to the project file associated with the current buffer."
(car (directory-files (file-name-directory (buffer-file-name)) t "\\.vbp")))
(defun visual-basic-start-ide ()
"Start Visual Basic (or your favorite IDE, (after Emacs, of course))
on the first project file in the current directory.
Note: it's not a good idea to leave Visual Basic running while you
are editing in Emacs, since Visual Basic has no provision for reloading
changed files."
(interactive)
(let (file)
(cond ((null visual-basic-ide-pathname)
(error "No pathname set for Visual Basic. See visual-basic-ide-pathname"))
((null (setq file (visual-basic-buffer-project-file)))
(error "No project file found"))
((fboundp 'win-exec)
(suspend-frame)
(win-exec visual-basic-ide-pathname 'win-show-normal file))
((fboundp 'start-process)
(iconify-frame (selected-frame))
(start-process "*VisualBasic*" nil visual-basic-ide-pathname file))
(t
(error "No way to spawn process!")))))
;;; Indentation-related stuff.
(defun visual-basic-indent-region (start end)
"Perform `visual-basic-indent-line' on each line in region delimited by START and END."
(interactive "r")
(save-excursion
(goto-char start)
(beginning-of-line)
(while (and (not (eobp))
(< (point) end))
(if (not (looking-at visual-basic-blank-regexp))
(visual-basic-indent-line))
(forward-line 1)))
(cond ((fboundp 'zmacs-deactivate-region)
(zmacs-deactivate-region))
((fboundp 'deactivate-mark)
(deactivate-mark))))
(defun visual-basic-previous-line-of-code ()
"Set point on previous line of code, skipping any blank or comment lines."
(if (not (bobp))
(forward-line -1)) ; previous-line depends on goal column
(while (and (not (bobp))
(or (looking-at visual-basic-blank-regexp)
(looking-at visual-basic-comment-regexp)))
(forward-line -1)))
(defun visual-basic-next-line-of-code ()
"Set point on next line of code, skipping any blank or comment lines."
(if (null (eobp))
(forward-line 1)) ; next-line depends on goal column
(while (and (null (eobp))
(looking-at visual-basic-comment-regexp))
(forward-line 1)))
(defun visual-basic-find-original-statement ()
"If the current line is a continuation, move back to the original stmt."
(let ((here (point)))
(visual-basic-previous-line-of-code)
(while (and (not (bobp))
(looking-at visual-basic-continuation-regexp))
(setq here (point))
(visual-basic-previous-line-of-code))
(goto-char here)))
(defun visual-basic-find-predicate-matching-stmt (open-p close-p)
"Find opening statement statisfying OPEN-P predicate for which
matching closing statement statisfies CLOSE-P predicate.
Point is set on line statifying OPEN-P predicate, with ignoring
any line satifying OPEN-P but for which a matching line
statifying CLOSE-P was visited before during this search."
;; Searching backwards
(let ((level 0))
(while (and (>= level 0) (not (bobp)))
(visual-basic-previous-line-of-code)
(visual-basic-find-original-statement)
(cond ((funcall close-p)
(setq level (+ level 1)))
((funcall open-p)
(setq level (- level 1)))))))
(defun visual-basic-find-matching-stmt (open-regexp close-regexp)
"Same as function `visual-basic-find-predicate-matching-stmt' except that regexps OPEN-REGEXP CLOSE-REGEXP are supplied instead of predicate, equivalent predicate being to be looking at those regexps."
(visual-basic-find-predicate-matching-stmt
(lambda () (looking-at open-regexp))
(lambda () (looking-at close-regexp))))
(defun visual-basic-at-line-continuation ()
(and (looking-at visual-basic-looked-at-continuation-regexp)
(save-excursion
(or (bolp)
(progn (backward-char)
(or
(looking-at "[^[:alnum:]_]")
(and (looking-at "[[:digit:]]")
(re-search-forward "[^[:digit:]]" nil t)
(looking-at "[^[:alnum:]]"))))))))
(defun visual-basic-get-complete-tail-of-line ()
"Return the tail of the current statement line, starting at
point and going up to end of statement line. If you want the
complete statement line, you have to call functions
`visual-basic-find-original-statement' and then
`beginning-of-line' before"
(let* ((start-point (point))
complete-line
(line-beg start-point)
line-end)
(while (null line-end)
(end-of-line)
(setq line-end (point))
(if (search-backward "_" line-beg t)
(if (visual-basic-at-line-continuation)
;; folded line
(progn
(setq line-end (1- (point))
complete-line (cons
(buffer-substring-no-properties
line-beg line-end)
complete-line)
line-end nil)
(beginning-of-line 2)
(setq line-beg (point)))
;; _ found, but not a folded line (this is a syntax error)
(setq complete-line
(cons (buffer-substring-no-properties line-beg line-end) complete-line)))
;; not a folded line
(setq complete-line
(cons (buffer-substring-no-properties line-beg line-end)
complete-line))))
(mapconcat 'identity (nreverse complete-line) " ")))
(defun visual-basic-if-not-on-single-line ()
"Return non-`nil' when the If statement is not on a single statement
line, i.e. requires a matching End if. Note that a statement line may
be folded over several code lines."
(if (looking-at visual-basic-if-regexp)
(save-excursion
(beginning-of-line)
(let (p1
p2
;; 1st reconstruct complete line
(complete-line (visual-basic-get-complete-tail-of-line)) )
;; now complete line has been reconstructed, drop confusing elements
;; remove any VB string from complete line, as strings may disrupt : and ' detection
(while (and (setq p1 (string-match "\"" complete-line))
(setq p2 (string-match "\"" complete-line (1+ p1))))
(setq complete-line (concat (substring complete-line 0 p1)
(substring complete-line (1+ p2)))))
;; now drop tailing comment if any
(when (setq p1 (string-match "'" complete-line))
(setq complete-line (substring complete-line 0 (1- p1))))
;; now drop 1st concatenated instruction if any
(when (setq p1 (string-match ":" complete-line))
(setq complete-line (substring complete-line p1)))
;;
(string-match "Then\\s-*$" complete-line))); end (save-excursion ...)
;; else, not a basic if
nil))
(defun visual-basic-find-matching-if ()
"Set pointer on the line with If stating the If ... Then ... [Else/Elseif ...] ... End If block containing pointer."
(visual-basic-find-predicate-matching-stmt 'visual-basic-if-not-on-single-line
(lambda () (looking-at visual-basic-endif-regexp))))
(defun visual-basic-find-matching-select ()
"Set pointer on the line with Select Case stating the Select Case ... End Select block containing pointer."
(visual-basic-find-matching-stmt visual-basic-select-regexp
visual-basic-select-end-regexp))
(defun visual-basic-find-matching-for ()
"Set pointer on the line with For stating the `For ... Next' block containing pointer."
(visual-basic-find-matching-stmt visual-basic-for-regexp
visual-basic-next-regexp))
(defun visual-basic-find-matching-do ()
"Set pointer on the line with Do stating the `Do ... Loop' block containing pointer."
(visual-basic-find-matching-stmt visual-basic-do-regexp
visual-basic-loop-regexp))
(defun visual-basic-find-matching-while ()
"Set pointer on the line with While stating the `While ... Wend' block containing pointer."
(visual-basic-find-matching-stmt visual-basic-while-regexp
visual-basic-wend-regexp))
(defun visual-basic-find-matching-with ()
"Set pointer on the line with With stating the `With ... End with' block containing pointer."
(visual-basic-find-matching-stmt visual-basic-with-regexp