Branch: refs/heads/master
Author: ankitpati <ankitpati(a)gmail.com>
Committer: Nick Treleaven <n(a)trelsoft.com>
Date: Mon, 27 May 2019 12:48:38 UTC
Commit: 95c0c06cba3dc0d988c2c0a74c5d52fa2e9f3a93
https://github.com/geany/geany/commit/95c0c06cba3dc0d988c2c0a74c5d52fa2e9f3…
Log Message:
-----------
Add support for Apple Swift language
Modified Paths:
--------------
data/Makefile.am
data/filedefs/filetypes.Swift.conf
data/filetype_extensions.conf
Modified: data/Makefile.am
1 lines changed, 1 insertions(+), 0 deletions(-)
===================================================================
@@ -64,6 +64,7 @@ filetypes = \
filedefs/filetypes.Scala.conf \
filedefs/filetypes.sh \
filedefs/filetypes.sql \
+ filedefs/filetypes.Swift.conf \
filedefs/filetypes.tcl \
filedefs/filetypes.txt2tags \
filedefs/filetypes.vala \
Modified: data/filedefs/filetypes.Swift.conf
45 lines changed, 45 insertions(+), 0 deletions(-)
===================================================================
@@ -0,0 +1,45 @@
+# For complete documentation of this file, please see Geany's main documentation
+[styling=C]
+
+[keywords]
+primary=associativity break case catch class continue convenience default deinit didSet do else enum extension fallthrough false final for func get guard if import in infix init inout internal lazy let mutating nil operator override postfix precedence prefix private public repeat required return self set static struct subscript super switch throws true try var weak where while willSet
+secondary=Array Bool Dictionary ErrorType Int Float Double Set String Tuple UnicodeScalar abs max min print
+# documentation keywords for javadoc
+doccomment=author deprecated exception param return see serial serialData serialField since throws todo version
+
+[lexer_properties]
+lexer.cpp.triplequoted.strings=1
+
+[settings]
+lexer_filetype=C
+
+# default extension used when saving files
+extension=swift
+
+# MIME type
+mime_type=text/x-swift
+
+# the following characters are these which a "word" can contains, see documentation
+#wordchars=_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789
+
+# single comments, like # in this file
+comment_single=//
+# multiline comments
+comment_open=/*
+comment_close=*/
+
+comment_use_indent=true
+
+[build-menu]
+FT_00_LB=Compile
+FT_00_CM=swiftc "%f"
+FT_00_WD=
+EX_00_LB=Execute
+EX_00_CM="./%e"
+EX_00_WD=
+EX_01_LB=Execute as Script
+EX_01_CM=swift "%f"
+EX_01_WD=
+FT_01_LB=Build
+FT_01_CM=swift build
+FT_01_WD=
Modified: data/filetype_extensions.conf
3 lines changed, 2 insertions(+), 1 deletions(-)
===================================================================
@@ -62,6 +62,7 @@ Ruby=*.rb;*.rhtml;*.ruby;*.gemspec;Gemfile;rakefile;Rakefile;
Scala=*.scala;*.scl;
Sh=*.sh;configure;configure.in;configure.in.in;configure.ac;*.ksh;*.mksh;*.zsh;*.ash;*.bash;.bashrc;bash.bashrc;.bash_*;bash_*;*.m4;PKGBUILD;*profile;
SQL=*.sql;
+Swift=*.swift;
Tcl=*.tcl;*.tk;*.wish;*.exp;
Txt2tags=*.t2t;
Vala=*.vala;*.vapi;
@@ -74,7 +75,7 @@ None=*;
# Note: restarting is required after editing groups
[Groups]
-Programming=Arduino;Clojure;CUDA;Cython;Genie;Scala;
+Programming=Arduino;Clojure;CUDA;Cython;Genie;Scala;Swift;
Script=Graphviz;
Markup=
Misc=JSON;
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
Branch: refs/heads/master
Author: Enrico Tröger <enrico.troeger(a)uvena.de>
Committer: GitHub <noreply(a)github.com>
Date: Sun, 19 May 2019 22:11:15 UTC
Commit: 0fe06af949662e77f8ae472014df5736bd0199c3
https://github.com/geany/infrastructure/commit/0fe06af949662e77f8ae472014df…
Log Message:
-----------
Update "waiter" wording
Modified Paths:
--------------
ircbot-plugins/Geany/plugin.py
Modified: ircbot-plugins/Geany/plugin.py
20 lines changed, 10 insertions(+), 10 deletions(-)
===================================================================
@@ -43,15 +43,15 @@
IRC_USERLIST_FILEPATH = '/srv/tmp/irc_userlist'
GOODIES = {
- 'coffee': 'A nice sexy waitress brings %s a big cup of coffee!',
- 'coke': 'A nice sexy waitress brings %s a cool bottle of coke!',
- 'pepsi': 'A nice sexy waitress brings %s a cool bottle of Pepsi!',
- 'juice': 'A nice sexy waitress brings %s a glass of fresh juice!',
- 'vodka': 'A nice sexy waitress brings %s a shot glass of vodka!',
- 'beer': 'A nice sexy waitress brings %s a nice bottle of beer!',
- 'tea': 'A nice sexy waitress brings %s a cup of hot tea!',
- 'milk': 'A nice sexy waitress brings %s a glass of fresh, cold milk',
- 'chocolate': 'A nice sexy waitress brings %s a piece of sweet chocolate',
+ 'coffee': 'A nice waiter brings %s a big cup of coffee!',
+ 'coke': 'A nice waiter brings %s a cool bottle of coke!',
+ 'pepsi': 'A nice waiter brings %s a cool bottle of Pepsi!',
+ 'juice': 'A nice waiter brings %s a glass of fresh juice!',
+ 'vodka': 'A nice waiter brings %s a shot glass of vodka!',
+ 'beer': 'A nice waiter brings %s a nice bottle of beer!',
+ 'tea': 'A nice waiter brings %s a cup of hot tea!',
+ 'milk': 'A nice waiter brings %s a glass of fresh, cold milk',
+ 'chocolate': 'A nice waiter brings %s a piece of sweet chocolate',
'pizza': 'Someone calls Mario, and he brings %s a tasty hawaiian pizza!'
}
@@ -181,7 +181,7 @@ def listgoodies(self, irc, msg, args, text):
"""
available_goodies = sorted(GOODIES.keys())
available_goodies = ', '.join(available_goodies)
- text = 'A nice sexy waitress offers the following goodies for you: %s' % available_goodies
+ text = 'A nice waiter offers the following goodies for you: %s' % available_goodies
irc.reply(text)
def hello(self, irc, msg, args, text):
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).