aboutsummaryrefslogtreecommitdiff
path: root/website/templates
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@zwitserloot.com>2018-03-19 23:43:54 +0100
committerReinier Zwitserloot <reinier@zwitserloot.com>2018-03-19 23:51:56 +0100
commitae611e168718bc226d5ca530484b9a92c2836b30 (patch)
tree43407cbe556698afcf88b7d458f970e65fda15d8 /website/templates
parent3cfd7a80eddab24b868fb5cfcec4d5cf2b55604c (diff)
downloadlombok-ae611e168718bc226d5ca530484b9a92c2836b30.tar.gz
lombok-ae611e168718bc226d5ca530484b9a92c2836b30.tar.bz2
lombok-ae611e168718bc226d5ca530484b9a92c2836b30.zip
[website] Added instruction page about VS Code support in lombok. Updated upcoming talks section.
Diffstat (limited to 'website/templates')
-rw-r--r--website/templates/_scaffold.html3
-rw-r--r--website/templates/main.html5
-rw-r--r--website/templates/setup/intellij.html2
-rw-r--r--website/templates/setup/vscode.html18
4 files changed, 23 insertions, 5 deletions
diff --git a/website/templates/_scaffold.html b/website/templates/_scaffold.html
index 767f28e5..646f0247 100644
--- a/website/templates/_scaffold.html
+++ b/website/templates/_scaffold.html
@@ -22,7 +22,8 @@
"Netbeans": "netbeans",
"MyEclipse": "eclipse",
"Spring Tool Suite": "eclipse",
- "JBoss Developer Studio": "eclipse"
+ "JBoss Developer Studio": "eclipse",
+ "Visual Studio Code": "vscode"
},
"Platforms": {
"Android": "android",
diff --git a/website/templates/main.html b/website/templates/main.html
index 52b3ac0e..25098758 100644
--- a/website/templates/main.html
+++ b/website/templates/main.html
@@ -32,9 +32,8 @@
<div class="row text-center">
<@main.h2 title="Upcoming presentations" />
<p>
- Roel and Reinier will be talking about (near) future java features:<br /> <a href="https://programm.javaland.eu/2018/#/scheduledEvent/549331">JavaLand March 14th 2018, 12:00</a>, room: Schauspielhaus.
- </p><p>
- <em>See you there! (We'll have stickers!)</em>
+ We're talking to NL-JUG to give a presentation soon in the The Hague (The Netherlands) area.<br />
+ Want us to present at your JUG or conference? Feel free to contact us, via email (<code>info@</code>) or twitter: <a href="https://twitter.com/project_lombok">@project_lombok</a>.
</p>
</div>
<div class="row text-center supporterBar">
diff --git a/website/templates/setup/intellij.html b/website/templates/setup/intellij.html
index 989986e5..331a7bcd 100644
--- a/website/templates/setup/intellij.html
+++ b/website/templates/setup/intellij.html
@@ -5,7 +5,7 @@
<p>
The <a href="https://www.jetbrains.com/idea/">Jetbrains IntelliJ IDEA</a> editor is compatible with lombok.
</p><p>
- Add the <a href="https://plugins.jetbrains.com/plugin/6317">Lombok IntelliJ plugin</a> to add lombok support IntelliJ:
+ Add the <a href="https://plugins.jetbrains.com/plugin/6317">Lombok IntelliJ plugin</a> to add lombok support for IntelliJ:
<ul><li>
Go to <code>File &gt; Settings &gt; Plugins</code>
</li><li>
diff --git a/website/templates/setup/vscode.html b/website/templates/setup/vscode.html
new file mode 100644
index 00000000..bf9c3e58
--- /dev/null
+++ b/website/templates/setup/vscode.html
@@ -0,0 +1,18 @@
+<#import "_setup.html" as s>
+
+<@s.scaffold title="Microsoft Visual Studio Code">
+ <@s.introduction>
+ <p>
+ The <a href="https://code.visualstudio.com/">Microsoft Visual Studio Code</a> editor is compatible with lombok.
+ </p><p>
+ Add the <a href="https://marketplace.visualstudio.com/items?itemName=GabrielBB.vscode-lombok">vscode-lombok</a> plugin to your Visual Studio Code IDE to add lombok support.
+ <ul><li>
+ press <code>Ctrl + Shift + X</code> to open the extension manager.
+ </li><li>
+ Type <code>lombok</code> to find the plugin, and click <code>install</code>.
+ </li><li>
+ Reload VS Code when asked.
+ </li></ul>
+ </p>
+ </@s.introduction>
+</@s.scaffold>