Skip to content

Commit 41996d2

Browse files
Update docs
1 parent ee7c876 commit 41996d2

File tree

4 files changed

+21
-16
lines changed

4 files changed

+21
-16
lines changed

README.markdown

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ vim-hardy
44
Introduction
55
------------
66

7-
vim-hardy provides support for Arduino in vim. It covers syntax, compilation,
8-
and verification for Arduino code. I decided to call this plugin _"vim-hardy"_
9-
because _"Arduino"_ means _"hardy friend"_ in italian. Note that I did not
10-
write the arduino syntax file, it was generated by Johannes Hoff's script which
11-
is available at [bitbucket.org/johannes/arduino-vim-syntax](http://bitbucket.org/johannes/arduino-vim-syntax).
7+
vim-hardy adds support for the Arduino language in vim. It covers syntax,
8+
compilation, and verification for Arduino code. I decided to call this plugin
9+
_"vim-hardy"_ because _"Arduino"_ means _"hardy friend"_ in italian. Note that I
10+
did not write the arduino syntax file, it was generated by Johannes Hoff's
11+
script which is available at [bitbucket.org/johannes/arduino-vim-syntax](http://bitbucket.org/johannes/arduino-vim-syntax).
1212

1313
Requirements
1414
------------

doc/hardy.txt

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*hardy.txt* Arduino IDE integration for vim
1+
*hardy.txt* Arduino language integration for vim
22

33
Reference Manual ~
44

@@ -15,11 +15,10 @@ CONTENTS *HardyContents*
1515
+----------------------------------------------------------------------------+~
1616
INTRODUCTION *Hardy*
1717

18-
vim-hardy provides integration with the Arduino IDE, and syntax highlighting
19-
for the Arduino language. I decided to name this plugni what it is, because
20-
Arduino means "hardy friend" in italian. Note that I did not write the arduino
21-
syntax file, it was generated by Johannes Hoff's script which is available
22-
here:
18+
vim-hardy adds support for the Arduino language in vim. I decided to name
19+
this plugin what it is, because Arduino means "hardy friend" in italian. Note
20+
that I did not write the arduino syntax file, it was generated by Johannes
21+
Hoff's script which is available here:
2322
http://bitbucket.org/johannes/arduino-vim-syntax
2423

2524
+----------------------------------------------------------------------------+~
@@ -43,23 +42,23 @@ options should be set in your vimrc.
4342

4443
#----------------------------------------------------------------------------#~
4544
*'g:hardy_arduino_path'*
46-
Values: Any string
45+
Values: string
4746
Default: arduino
4847

4948
Sets the path to the arduino IDE executable. By default, it is looked for in
5049
your PATH.
5150

5251
#----------------------------------------------------------------------------#~
5352
*'g:hardy_arduino_options'*
54-
Values: Any string
53+
Values: string
5554
Default: ''
5655

5756
Any additional options to be passed to the arduino ide when uploading or
5857
verifying.
5958

6059
#----------------------------------------------------------------------------#~
6160
*'g:hardy_window_name'*
62-
Values: Any string
61+
Values: string
6362
Default: __Arduino_Info__
6463

6564
This option is used to set the name for the split window used to show the

ftplugin/arduino.vim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
" File: arduino.vim
2-
" Description: vim filetype plugin which provides support for the Arduino
2+
" Description: Arduino language integration for vim
33
" Maintainer: Evergreen
4-
" Last Change: July 12th, 2015
4+
" Last Change: July 16th, 2015
55
" License: Vim License
66

77
" SCRIPT INITIALIZATION {{{

indent/arduino.vim

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
" File: arduino.vim
2+
" Description: Arduino language integration for vim
3+
" Maintainer: Evergreen
4+
" Last Change: July 16th, 2015
5+
" License: Vim License
6+
17
if exists("b:did_indent")
28
finish
39
endif

0 commit comments

Comments
 (0)