This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * A very basic Cocoa application. | |
| * | |
| * Save as "main.m" and compile in Terminal.app with: | |
| * clang -o test main.m -framework AppKit -fobj-c-arc | |
| */ | |
| #import <AppKit/AppKit.h> | |
| @interface TestView : NSView <NSWindowDelegate> | |
| - (void)drawRect:(NSRect)rect; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/data/colorschemes/alt.conf b/data/colorschemes/alt.conf | |
| index 6d0e3dd..a4e8ae8 100644 | |
| --- a/data/colorschemes/alt.conf | |
| +++ b/data/colorschemes/alt.conf | |
| @@ -1,9 +1,10 @@ | |
| [theme_info] | |
| name=Alternate | |
| description=Alternate Geany color scheme with styles like the Geany <= 0.19 Python/script defaults with gray comments. | |
| -version=0.01 | |
| -author= |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/src/highlighting.c b/src/highlighting.c | |
| index b87c18b..bf4ef1e 100644 | |
| --- a/src/highlighting.c | |
| +++ b/src/highlighting.c | |
| @@ -1339,6 +1339,9 @@ static void show_color_scheme_dialog(void) | |
| GEANY_DEFAULT_DIALOG_HEIGHT * 7/4, GEANY_DEFAULT_DIALOG_HEIGHT); | |
| swin = gtk_scrolled_window_new(NULL, NULL); | |
| + gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(swin), GTK_SHADOW_ETCHED_IN); | |
| + gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(swin), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Index: parsers.h | |
| =================================================================== | |
| --- parsers.h (revision 781) | |
| +++ parsers.h (working copy) | |
| @@ -26,11 +26,14 @@ | |
| CppParser, \ | |
| CsharpParser, \ | |
| CobolParser, \ | |
| + DParser, \ | |
| DosBatchParser, \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/src/build.h b/src/build.h | |
| index 4e92290..543c329 100644 | |
| --- a/src/build.h | |
| +++ b/src/build.h | |
| @@ -24,6 +24,8 @@ | |
| #ifndef GEANY_BUILD_H | |
| #define GEANY_BUILD_H 1 | |
| +G_BEGIN_DECLS | |
| + |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <stdio.h> | |
| #include <string.h> | |
| #define MAXLINE 16484 | |
| int main(void) | |
| { | |
| int c; | |
| size_t len; | |
| char line[MAXLINE] = { 0 }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/data/geany.glade b/data/geany.glade | |
| index 3c04578..184cce0 100644 | |
| --- a/data/geany.glade | |
| +++ b/data/geany.glade | |
| @@ -269,6 +269,26 @@ | |
| </object> | |
| </child> | |
| <child> | |
| + <object class="GtkMenuItem" id="insert_apache2_notice1"> | |
| + <property name="use_action_appearance">False</property> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| D [0-9] | |
| L [a-zA-Z_] | |
| H [a-fA-F0-9] | |
| E ([Ee][+-]?{D}+) | |
| P ([Pp][+-]?{D}+) | |
| FS (f|F|l|L) | |
| IS ((u|U)|(u|U)?(l|L|ll|LL)|(l|L|ll|LL)(u|U)) | |
| %{ | |
| #include <stdio.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <geanyplugin.h> | |
| GeanyData *geany_data; | |
| GeanyPlugin *geany_plugin; | |
| GeanyFunctions *geany_functions; | |
| PLUGIN_VERSION_CHECK(211); | |
| PLUGIN_SET_INFO("Tab Sort", | |
| "Automatically keeps document tabs sorted", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ------------------------------------------------------------------------------ | |
| | Dec | Oct | Hex | Binary | Asc | Description | | |
| ------------------------------------------------------------------------------ | |
| | 0 | 0000 | 00 | 00000000 | NUL | Null char | | |
| | 1 | 0001 | 01 | 00000001 | SOH | Start of Heading | | |
| | 2 | 0002 | 02 | 00000010 | STX | Start of Text | | |
| | 3 | 0003 | 03 | 00000011 | ETX | End of Text | | |
| | 4 | 0004 | 04 | 00000100 | EOT | End of Transmission | | |
| | 5 | 0005 | 05 | 00000101 | ENQ | Enquiry | | |
| | 6 | 0006 | 06 | 00000110 | ACK | Acknowledgment | |