-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfsb.converter.vim
1241 lines (961 loc) · 31.8 KB
/
fsb.converter.vim
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
" fsb.converter.vim
" fsb
" A Forth source preprocessor and converter
" for making classic blocks files with the Vim editor
" Version 0.14.0-pre.1+201803260005
" See change log at the end of the file
" ==============================================================
" Author and license
" Copyright (C) 2015,2016,2017,2018 Marcos Cruz (programandala.net)
" You may do whatever you want with this work, so long as you
" retain the copyright notice(s) and this license in all
" redistributed copies and derived works. There is no warranty.
" ==============================================================
" Description
" fsb is a plugin for the Vim editor. It makes it easy to edit
" Forth source, in ordinary text format, for Forth systems that
" need a blocks file.
"
" Some simple layout conventions are used to mark the start of
" Forth blocks and to make metacomments (that will be removed
" from the target blocks file, as well as empty lines).
"
" See the file <README.adoc> for full details.
" ==============================================================
" History
" See at the end of the file
" ==============================================================
" To-do
" 2015-03-25: Try the 32x32 format.
"
" 2015-03-29: Fix: a blank block is added when the last one has
" 16 lines.
"
" 2015-05-14: New: `#block` directive to mark the start of a
" block.
" ==============================================================
" Boot
" XXX TMP -- commented out during development
if exists("b:loaded_fsb")
finish
endif
let b:loaded_fsb = 1
" ==============================================================
" Style
function! FsbToggleTheStyle()
" Toggle the highlighting style specific to the .fsb format,
" and set some formatting options.
let b:fsbStyle=invert(b:fsbStyle)
if b:fsbStyle
" `textwidth` is set to one less than the characters per
" line because some Forth systems compile blocks as a whole,
" not by lines, and the code at the end of a line could join
" the code at the start of the following line.
"
" XXX TODO Make this configurable with a '#cpl' directive.
execute 'setlocal textwidth='.b:charsPerLineMinus1
" Mark the right limit.
" It's just a visual help for the user -- a check
" will be done before the conversion.
execute 'setlocal colorcolumn='.b:charsPerLine
" Highlight the first line of every block
hi def link forthBlockTitle Underlined
execute 'match forthBlockTitle /'.s:blockHeaderExpression.'/'
else
setlocal colorcolumn=
match none
endif
endfunction
function! FsbToggleTheFormat()
" Toggle the layout of the blocks between 16x64 (default) and 32x32.
let b:standardFormat=invert(b:standardFormat)
call FsbSetTheFormat(b:standardFormat)
endfunction
function! FsbSetTheFormat(standard)
if a:standard
let b:standardFormat=s:true
let b:charsPerLine=64
let b:linesPerBlock=16
" For string expressions where calculations don't work:
let b:charsPerLineMinus1=63
let b:linesPerBlockMinus1=15
" echomsg "Current format: 16x64 blocks"
else
let b:standardFormat=s:false
let b:charsPerLine=32
let b:linesPerBlock=32
" For string expressions where calculations don't work:
let b:charsPerLineMinus1=31
let b:linesPerBlockMinus1=31
" echomsg "Current format: 32x32 blocks"
endif
" XXX TODO Make this configurable with a '#cpl' directive.
execute 'setlocal textwidth='.b:charsPerLineMinus1
" Mark the right limit.
" It's just a visual help for the user -- a check
" will be done before the conversion.
execute 'setlocal colorcolumn='.b:charsPerLine
endfunction
" ==============================================================
" Misc
function! FsbTrim(string)
" Remove the leading and trailing spaces from a string.
" Reference:
" http://stackoverflow.com/questions/4478891/is-there-a-vimscript-equivalent-for-rubys-strip-strip-leading-and-trailing-s
return substitute(a:string, '^\s*\(.\{-}\)\s*$', '\1', '')
endfunction
" ==============================================================
" Movement
" The movement functions are mapped to function keys at the end
" of the file. They help organize the source file in blocks.
function! FsbValidLine()
" Is the current line valid?
" Invalid lines are empty lines or metacomments (backslash
" comments that don't start at the first column).
" Invalid lines are ignored and will not be converted to the
" target format.
let l:line=getline(line('.')) " current line
return match(l:line,'^\s*$')==-1 && match(l:line,'^\s\+\\\(\s.*\)\?$')==-1
endfunction
function! FsbMaxValidLinesUp()
" Move the cursor up the maximum number of valid lines,
" ignoring invalid lines.
let l:count=b:linesPerBlock
while l:count
if FsbValidLine()
let l:count=l:count-1
endif
call cursor(line('.')-1,1)
endwhile
endfunction
function! FsbAtLastLine()
" Is the cursor at the last line of the buffer?
return line('.')==line('$')
endfunction
function! FsbMaxValidLinesDown()
" Move the cursor down the maximum number of valid lines,
" ignoring invalid lines.
let l:count=b:linesPerBlock
while l:count && !FsbAtLastLine()
if FsbValidLine()
let l:count=l:count-1
endif
call cursor(line('.')+1,1)
endwhile
endfunction
function! FsbPreviousBlock()
" Go to the header line of the previous block.
silent! call search(s:blockHeaderExpression,'Wb')
endfunction
function! FsbTopOfBlock()
" Go to the header line of the current block.
" Update `s:indexLine`.
if !search(s:blockHeaderExpression,'Wbc')
call cursor(1,1)
endif
let s:indexLine=getline(line('.'))
endfunction
function! FsbNextBlock()
" Go to the header line of the next block.
silent! let l:success=search(s:blockHeaderExpression,'W')
if !l:success
" Go to the end of the file
normal G
endif
endfunction
function! FsbGoToBlock(block)
" Go to the header of the given block number, (the first block
" is 0).
let l:block=a:block
call cursor(1,1)
while l:block
call FsbNextBlock()
let l:block=l:block-1
endwhile
endfunction
function! FsbGoToBlockFromEnd(block)
" Go to the header of given block number, counting backwards
" from the end of the file (the last block is 0).
let l:block=a:block+1
call cursor(line('$'),1)
while l:block
call FsbPreviousBlock()
let l:block=l:block-1
endwhile
endfunction
function! FsbBottomOfBlock()
" Go to the last non-empty line of the current block.
call FsbNextBlock()
" If the cursor is at the end of the file, it's not at the
" header of a block, so the 'c' search flag is used in order
" to accept a match at the cursor position:
let l:searchFlags= FsbAtLastLine() ? 'Wbc' : 'Wb'
call search('^.*\S',l:searchFlags)
" XXX FIXME -- this fails when the last block is empty.
" XXX FIXME -- this fails when the last block has any empty line at the end
endfunction
" ==============================================================
" Checks
function! FsbIsHeader(lineNumber)
" Is the given line a block header?
return match(getline(a:lineNumber),s:blockHeaderExpression)==0
endfunction
function! FsbLineTooLongError()
echoerr "line" line('.') "is longer than" b:charsPerLineMinus1 "characters"
endfunction
function! FsbCheckLines(silent)
" Check the lenght of all lines, regardless of blocks. This is
" useful when editing sources in FSA format, which has no
" block headers except the first one.
let l:errorFlag=0
let l:currentLine=line('.')
let l:currentCol=col('.')
let l:validLines=0 " counter
call cursor(1,1)
while !FsbAtLastLine() " not end of file?
let l:validLine=FsbValidLine()
if l:validLine
let l:errorFlag=strchars(getline(line('.')))>b:charsPerLineMinus1
if l:errorFlag
call FsbLineTooLongError()
break
endif
endif
call cursor(line('.')+1,1) " move to next line
endwhile
echohl none
return l:errorFlag
endfunction
function! FsbCheckCurrentBlock(block,silent)
" Check the lenght of the current block.
" block = number of the current block, or -1 if unknown
let l:errorFlag=0
let l:blockId = a:block==-1 ? "current block" : "block ".printf("%5s","#".a:block)
let l:currentLine=line('.')
let l:currentCol=col('.')
let l:validLines=0 " counter
call FsbTopOfBlock()
while !FsbAtLastLine() " not end of file?
let l:validLine=FsbValidLine()
if l:validLine
let l:errorFlag=strchars(getline(line('.')))>b:charsPerLineMinus1
if l:errorFlag
call FsbLineTooLongError()
break
endif
endif
let l:validLines+=l:validLine " update the counter
call cursor(line('.')+1,1) " move to next line
if FsbIsHeader(line('.')) " next block?
break
endif
endwhile
if !l:errorFlag " no line length error?
" Check the length of the block
call cursor(l:currentLine,l:currentCol)
let l:errorFlag=(l:validLines>b:linesPerBlock)
if l:errorFlag
echohl Error
echomsg "Error:" l:blockId s:indexLine "has" l:validLines "lines; the maximum is" b:linesPerBlock
else
if !a:silent
echohl Normal
echomsg l:blockId printf("%3d",l:validLines) "lines " s:indexLine
endif
endif
endif
echohl none
return l:errorFlag
endfunction
function! FsbCheckBlocks(silent)
" Check the lenght of all blocks.
let l:errorFlag=0
let l:blockNumber=0
let l:currentLine=line('.')
let l:currentCol=col('.')
call cursor(1,1)
while 1
let l:titleLine=line('.')
if FsbCheckCurrentBlock(l:blockNumber,a:silent)
let l:errorFlag=1
break
endif
call cursor(l:titleLine+1,1)
if !search(s:blockHeaderExpression,'W') " not another block title?
break
endif
let l:blockNumber=blockNumber+1
endwhile
if !l:errorFlag
call cursor(l:currentLine,l:currentCol)
endif
return l:errorFlag
endfunction
function! FsbIndex()
" Show and index of all blocks.
let l:blockNumber=0
let l:currentLine=line('.')
let l:currentCol=col('.')
let l:more=&more
set more
call cursor(1,1)
while 1
if FsbIsHeader(line('.'))
echo l:blockNumber getline(line('.'))
let l:blockNumber=blockNumber+1
endif
if line('.')==line('$')
break
else
call cursor(line('.')+1,1) " move to next line
endif
endwhile
call cursor(l:currentLine,l:currentCol)
let &more=l:more
return
endfunction
function! FsbBlockNumber()
" Show the number of the current block.
" A dry-run substitution of block headers does the trick:
" it shows the number of occurrences in the desired range.
" XXX FIXME -- This method doesn't work for the first block
" (it shows 1 instead of 0) and it works only if the first
" block starts with a block header.
" XXX FIXME -- The result is one less when the cursor is on a
" header line.
"let l:currentLine=line('.')
"let l:currentCol=col('.')
execute ":1,?".s:blockHeaderExpression."?-1substitute@".s:blockHeaderExpression."@@ne"
endfunction
" ==============================================================
" Directives
" Directives make it possible to configure the converter and add
" ad hoc conversions to it.
" All directives must be at the start of a line. They consist of
" two or three parts, separated with one or more spaces: First,
" the Forth backslash, as a Forth line comment (but always at
" the start of the line); second, the directive keyword; third,
" an optional parameter.
" Examples:
"
" / Substitute a string in the whole file:
" / #vim %substitute/Hello/Goodbye/g
" / Substitute a string in the definition of the word 'MYWORD':
" / #vim /\<: MYWORD\>/,/\<;\>/%substitute/Hello/Goodbye/g
"
" Examples of directives not implemented yet:
"
" / #cpl 63
" / #tap
" / #abersoft
function! FsbVimDirective(directive)
" Search for '#vim' or '#previm' directives, depending on the
" argument, and execute their Vim commands.
call cursor(1,1) " Go to the top of the file.
" Empty dictionary to store the Vim commands; their line
" number, padded with zeroes, will be used as key:
let l:command={}
" Search for all directives and store their line numbers and
" Vim commands
let l:directiveExpr='^\s\+\\\s\+'.a:directive.'\s\+'
while search(l:directiveExpr,'Wc')
let l:key=matchstr('00000000'.string(line('.')),'.\{8}$')
let l:line=getline(line('.'))
let l:command[l:key]=strpart(l:line,matchend(l:line,l:directiveExpr))
call setline('.','') " blank the line
endwhile
if len(l:command)
" Execute all Vim commands
for l:key in sort(keys(l:command))
call cursor(str2nr(l:key),1)
" XXX TODO make 'silent' configurable
" XXX with 'silent', wrong regexp in substitutions are hard to notice!
execute 'silent! '.l:command[l:key]
endfor
if len(l:command)==1
echo "One '".a:directive."' directive executed'"
else
echo len(l:command)." '".a:directive."' directives executed"
endif
endif
endfunction
function! FsbVimDirectives()
" Search for all '#previm' and '#vim' directives and execute
" their Vim commands.
" The '#previm' and '#vim' directives make it possible to
" execute any ex Vim command in the source.
"
" A typical simple usage is to convert UTF-8 characters to the
" encoding or user defined graphics of an 8-bit platform.
"
" This function was adapted from Vimclair BASIC
" (http://programandala.net/en.program.vimclair_basic.html).
" Syntax:
"
" The directives must be at the start of a line. They consist
" of three parts: the Forth backslash as an ordinary comment
" (with optional spaces at the left), the '#previm' or '#vim'
" directive and any Vim ex command:
"
" \ #vim Any-Vim-Ex-Command
call FsbVimDirective('#previm')
call FsbVimDirective('#vim')
endfunction
function! FsbTraceDirective()
" Search for the '#trace' directive and update the b:trace
" flag.
let b:trace=search('^\s\+\\\s\+#trace\s*$','wc')
if b:trace
" Directory to save the conversion steps into.
let s:traceDir=s:sourceFileDir.'/.fsb_trace/'
if !isdirectory(s:traceDir)
" XXX TODO if exists("*mkdir")
" XXX TODO catch possible errors
call mkdir(s:traceDir,'',0700)
endif
endif
endfunction
" ==============================================================
" Converter
function! FsbSaveStep(description)
" Save the current version of the file being converted, into
" the s:traceDir directory, for debugging purposes. The
" directory must exist.
if !b:trace
return
endif
let l:number='00'.s:step
" XXX INFORMER
" echo 'Step' l:number ':' a:description
let l:number=strpart(l:number,len(l:number)-2)
silent execute 'write! ++bin ++bad=keep '.s:traceDir.s:sourceFilename.'.step_'.l:number.'_'.a:description
let s:step=s:step+1
endfunction
function! Fsb2(filetype)
" Save a copy of the Forth source code hold in the current
" buffer to a new file, with the given filetype.
" a:filetype = format and filename extension of the output
" file:
" fb = Forth block file
" fbs = Forth block file with end of lines
" ----------------------------------------------------------
" Check the lengths of the blocks
" XXX INFORMER
" echo "About to check the blocks"
if FsbCheckBlocks(1)
return
endif
" XXX INFORMER
" echo "Blocks checked"
" ----------------------------------------------------------
" Target file type
let l:fb = a:filetype=='fb'
let l:fbs = a:filetype=='fbs'
" ----------------------------------------------------------
" Init the saving of steps
" Counter for the saved step files
let s:step=0
" Filename of the source file, without path
let s:sourceFilename=fnamemodify(expand('%'),':t')
" Absolute directory of the source file
let s:sourceFileDir=fnamemodify(expand('%'),':p:h')
" ----------------------------------------------------------
" Create the target file and start editing it
" Create a copy of the current file with the filename
" extension changed to .fb and open it for editing.
" XXX TMP experimental It seems this fixes the problem caused
" by '#vim' directives that convert UTF-8 or Latin1 chars to
" characters of the target platform that are bad in the
" current encoding.
set encoding=latin1
" XXX INFORMER
" echo 'About to create the target file'
silent! update " Write the current file if needed
let t:standardFormat=b:standardFormat
split " Split the window
let s:outputFile=expand('%:r').'.'.a:filetype
if bufloaded(s:outputFile)
silent! execute 'bw! '.s:outputFile
endif
silent! execute 'write! '.s:outputFile
silent! execute 'edit ++bin '.s:outputFile
call FsbSetTheFormat(t:standardFormat)
" XXX INFORMER
" echo 'Editing the target file'
" Don't add an end of line at the end of the file
setlocal bin
setlocal noendofline
" ----------------------------------------------------------
" Vim directives
call FsbVimDirectives()
call FsbTraceDirective()
" ----------------------------------------------------------
" Remove metacomments
" Metacomments are backslash comments that have any space at
" the left.
"
" This is done at the start in order to prevent line length
" errors caused by multibyte chars in comments.
"
" The lines are not removed, but just emptied, in order to
" keep the original line numbers in possible error messages
" caused later by a too long line code.
silent! %substitute@^\s\+\\\(\s.*\)\?$@@e
call FsbSaveStep('metacomments_removed')
" ----------------------------------------------------------
" Check the length of lines
" Remove trailing spaces:
silent! %substitute@\s\+$@@e
" Is there any line longer that b:charsPerLine-1 characters?
"if search('^.\{63}.\+','w') " XXX OLD
if search('^.\{'.b:charsPerLineMinus1.'}.\+','w')
call FsbLineTooLongError()
return
endif
" ----------------------------------------------------------
" Remove the empty lines
silent! %substitute@^\n@@e
call FsbSaveStep('empty_lines_removed')
" ----------------------------------------------------------
" Add missing lines before misplaced block titles
" Block titles are recognized because the Forth word '(' is
" at the first column of the line. They are supposed to be
" the first line of a new block.
call cursor(1,1)
while search(s:blockHeaderExpression,'Wc') " block title?
let l:titleLine=line('.')
if (l:titleLine-1)%b:linesPerBlock " misplaced block title?
let l:nextTitleLine=b:linesPerBlock*((l:titleLine-1)/b:linesPerBlock+1)+1
let s:missingLines=l:nextTitleLine-l:titleLine
while s:missingLines
call append(l:titleLine-1,'')
let s:missingLines=s:missingLines-1
endwhile
endif
if l:titleLine==line('$')
break
endif
call cursor(l:titleLine+1,1)
endwhile
" XXX Vim's bug?
" XXX FIXME this reports 1 more than the lines saved:
" XXX INFORMER
" echo "last line before saving the step:" line('$')
" normal G
" echo "it's" line('.')
call FsbSaveStep('missing_lines_added_before_block_headers')
" ----------------------------------------------------------
" Add missing lines at the end of the last block
" XXX Vim's bug?
" XXX FIXME this reports 1 more than the lines saved:
" XXX INFORMER
" echo "last line after saving the step:" line('$')
" normal G
" echo "it's" line('.')
if FsbIsHeader(line('$'))
let s:missingLines=b:linesPerBlock-1
else
" XXX FIXME -- it seems this adds 15 lines at the end of the file
" when the last block has 16 lines
" and there's a blank line or metacomment at the end (!?):
let s:missingLines=b:linesPerBlock-1-(line('$')-1)%b:linesPerBlock
" XXX INFORMER
" echo " missing lines:" s:missingLines
" echo " lines per block:" b:linesPerBlock
" XXX TMP -- temporary solution:
let s:missingLines= s:missingLines>=(b:linesPerBlock-1) ? 0 : s:missingLines
endif
" XXX INFORMER
" echo "missing lines:" s:missingLines
while s:missingLines
" XXX FIXME -- This seems a bug of Vim:
" This creates one line less than expected:
"call append(line('$'),'')
" This creates the expected number of lines,
" because one empty line is created first:
call append(line('$'),' ')
let s:missingLines=s:missingLines-1
" XXX INFORMER
" echo "line added at the end"
endwhile
call FsbSaveStep('missing_lines_added_at_the_end')
" ----------------------------------------------------------
" Add trailing spaces to all lines
if 1 " XXX original method
" XXX FIXME This adds a new blank line at the end! Why?
" But it works fine manually!
" XXX 2015-03-24: it seems it works fine now (?!)
silent! %substitute@$@\=repeat(' ',b:charsPerLine)@e
" XXX TMP -- debug tries:
" silent! %substitute@\n@\=repeat('X',b:charsPerLine)."\r"@e
else " XXX alternative method
" XXX FIXME -- This alternative method fails as well
" XXX FIXME
" The file is fine, but the last line reported is +1!
" XXX INFORMER
" echo "The last line is " line('$')
" write /tmp/kk2.txt
call cursor(1,1)
while 1
let l:line=getline(line('.'))
call setline('.',l:line.repeat(" ",b:charsPerLine))
" XXX INFORMER
" echo "line" line('.') "blanked"
" XXX FIXME -- The condition above should be:
"
" if line('.')==line('$')
"
" But somehow (no clue yet) Vim adds one line to the line
" count returned by `line('$')`. The test files saved during
" the process are perfect, but `line('$')` returns the last
" line number +1!
" if line('.')==line('$')-1
" XXX -- 2015-03-23: now it works (?!):
if line('.')==line('$')
break
endif
call cursor(line('.')+1,1)
endwhile
endif " XXX TMP
call FsbSaveStep('trailing_spaces_added')
" ----------------------------------------------------------
" Trim the lines to the required length
if l:fbs
" .fbs format
" silent! %substitute@^\(.\{63}\).\+$@\1@e " XXX OLD
execute 'silent! %substitute@^\(.\{'.b:charsPerLineMinus1.'}\).\+$@\1@e'
else
" .fb format
" silent! %substitute@^\(.\{64}\).\+$@\1@e " XXX OLD
execute 'silent! %substitute@^\(.\{'.b:charsPerLine.'}\).\+$@\1@e'
endif
call FsbSaveStep('lines_trimmed_to_the_final_length')
if l:fb
" .fb format
" Remove all end of lines
silent! %substitute@\n@@e
call FsbSaveStep('ends_of_line_removed')
endif
" ----------------------------------------------------------
" Save
" Write the output file
silent! write! ++bin ++enc=latin1 ++bad=keep
" Wipe its buffer
silent! bw!
echo '"'.s:outputFile.'" created'
endfunction
function! Fsb2fb()
" Save a copy of the Forth source code hold in the current
" buffer to a new file, with the format of Forth blocks. The
" output file will have its extension changed to '.fb'.
call Fsb2('fb')
endfunction
function! Fsb2fbs()
" Save a copy of the Forth source code hold in the current
" buffer to a new file, with the format of Forth blocks with
" end of lines (as used by the lina Forth system). The output
" file will have its extension changed to '.fbs'.
call Fsb2('fbs')
endfunction
" ==============================================================
" Init
let s:true=-1
let s:false=0
" Listings don't pause when the screen is filled:
set nomore
" XXX OLD first version
"let s:blockHeaderExpression='^(\s.\+)\s*$'
" XXX NEW also accepts the word `.(`, and something at the end:
" let s:blockHeaderExpression='^\.\?(\s.\+)\(\s\+.*\)\?$'
" XXX NEW also accepts empty headers:
" let s:blockHeaderExpression='^\.\?(\s.*)\(\s\+.*\)\?$'
" XXX NEW also accepts backslashes instead of parens:
" let s:blockHeaderExpression='^\(\(\.\?(\s\+.*)\)\|\(^\\\s.*\\\)\)\(\s\+.*\)\?$'
" XXX NEW changed '?' to '=', else the pattern can not be used backwards with the '?' command or range.
let s:blockHeaderExpression='^\(\(\.\=(\s\+.*)\)\|\(\\\s.*\\\)\)\(\s\+.*\)\=$'
" Set the standard format (16x64):
call FsbSetTheFormat(s:true)
" Activate the style (must be done *after* setting the format):
let b:fsbStyle = 0
call FsbToggleTheStyle()
" ==============================================================
" Key mappings
" Convert to .fb format
nmap <silent> <buffer> .fb :call Fsb2fb()<Return>
" Convert to .fbs format
nmap <silent> <buffer> .fbs :call Fsb2fbs()<Return>
" Toggle the highlighting style
nmap <silent> <buffer> ,s :call FsbToggleTheStyle()<Return>
" Toggle the format
nmap <silent> <buffer> ,f :call FsbToggleTheFormat()<Return>
" Movement
nmap <silent> <buffer> ,g :<C-U>call FsbGoToBlock(v:count)<Return>
nmap <silent> <buffer> ,G :<C-U>call FsbGoToBlockFromEnd(v:count)<Return>
nmap <silent> <buffer> ,b :call FsbBottomOfBlock()<Return>
nmap <silent> <buffer> ,t :call FsbTopOfBlock()<Return>
nmap <silent> <buffer> ,p :call FsbPreviousBlock()<Return>
nmap <silent> <buffer> ,n :call FsbNextBlock()<Return>
nmap <silent> <buffer> ,<Up> :call FsbMaxValidLinesUp()<Return>
nmap <silent> <buffer> ,<Down> :call FsbMaxValidLinesDown()<Return>
" Checks
nmap <silent> <buffer> ,c :call FsbCheckCurrentBlock(-1,0)<Return>
nmap <silent> <buffer> ,C :call FsbCheckBlocks(0)<Return>
nmap <silent> <buffer> ,L :call FsbCheckLines(0)<Return>
nmap <silent> <buffer> ,i :call FsbIndex()<Return>
" Number of the current block
nmap <silent> <buffer> ,# :call FsbBlockNumber()<Return>
" ==============================================================
" Change log
" 2015-02-12: Draft of the style commands.
"
" 2015-02-13: First version of the converters.
"
" 2015-02-14: New: Missing lines are at the end of the file and
" before every misplaced block title. Also the 'fbs' format is
" supported (Forth blocks with end of lines). Change: Renamed
" from 'fsb2fb.vim' to 'fsb.vim'. New: mappings.
"
" 2015-03-10: Change: maps.
"
" 2015-03-10: New: 'loaded_fsb' check.
"