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
| [theme_info] | |
| name=Breeze | |
| description=Breeze color scheme | |
| version=1 | |
| author=M673MA | |
| url=MMA | |
| compat=1.22;1.23;1.23.1;1.24 | |
| [named_styles] | |
| default=#000;#EFF0F1;false;false |
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
| struct A { | |
| uint8_t x:4; | |
| uint8_t :4; | |
| }; | |
| struct B { | |
| uint16_t x:4; | |
| uint16_t :12; // ... | |
| }; |
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
| $ cd /tmp | |
| $ wget https://github.com/geany/geany-themes/archive/0409bce3da003f5def671a3be84c81359788114a.zip | |
| $ unzip 0409bce3da003f5def671a3be84c81359788114a.zip | |
| $ cd the-dir-it-extracted-to | |
| $ cp colorschemes/*.conf ~/.config/geany/colorschemes/ |
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
| callbacks.c:84:static gboolean on_window_delete_event(GtkWidget *widget, GdkEvent *event, gpointer gdata) | |
| callbacks.c:551:gboolean toolbar_popup_menu(GtkWidget *widget, GdkEventButton *event, gpointer user_data) | |
| callbacks.c:1577:gboolean on_motion_event(GtkWidget *widget, GdkEventMotion *event, gpointer user_data) | |
| callbacks.c:1639:gboolean on_escape_key_press_event(GtkWidget *widget, GdkEventKey *event, gpointer user_data) | |
| callbacks.c:1736:static gboolean on_window_state_event(GtkWidget *widget, GdkEventWindowState *event, gpointer user_data) | |
| document.c:3577:static gboolean on_sci_key(GtkWidget *widget, GdkEventKey *event, gpointer data) | |
| editor.c:292:static gboolean on_editor_button_press_event(GtkWidget *widget, GdkEventButton *event, | |
| editor.c:4793:static gboolean on_editor_focus_in(GtkWidget *widget, GdkEventFocus *event, gpointer user_data) | |
| editor.c:4802:static gboolean on_editor_expose_event(GtkWidget *widget, GdkEventExpose *event, | |
| gb.c:177:static gboolean geany_pong_area_expose(GtkWidget *area, GdkEvent |
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
| # | |
| # Copyright Bernhard Posselt <bernhard.posselt(at)gmx(dot)at> | |
| # | |
| # This program is free software; you can redistribute it and/or modify | |
| # it under the terms of the GNU General Public License as published by | |
| # the Free Software Foundation; either version 2 of the License, or | |
| # (at your option) any later version. | |
| # | |
| # This program is distributed in the hope that it will be useful, | |
| # but WITHOUT ANY WARRANTY; without even the implied warranty of |
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
| From cf2a87a156aeb14d09c4d04b4b8857185803d9d4 Mon Sep 17 00:00:00 2001 | |
| From: Matthew Brush <[email protected]> | |
| Date: Sun, 10 Dec 2017 19:09:54 -0800 | |
| Subject: [PATCH 1/2] Switch to using recursive make for build system | |
| This makes it easier to grok what's going on since it puts related | |
| rules into separate files and allows for cleaner path specifications. | |
| As part of refactoring, various improvements where made to Autotools | |
| practices. It now passes make distcheck and can be built out-of-tree. |
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
| /* | |
| * one.c -- Lua core, libraries, and interpreter in a single file (Lua 5.3) | |
| */ | |
| /* default is to build the full interpreter */ | |
| #ifndef MAKE_LIB | |
| #ifndef MAKE_LUAC | |
| #ifndef MAKE_LUA | |
| #define MAKE_LUA | |
| #endif |
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/libmain.c b/src/libmain.c | |
| index fe4f377..6b8bf8a 100644 | |
| --- a/src/libmain.c | |
| +++ b/src/libmain.c | |
| @@ -110,6 +110,7 @@ static gboolean print_prefix = FALSE; | |
| #ifdef HAVE_PLUGINS | |
| static gboolean no_plugins = FALSE; | |
| #endif | |
| +static gboolean open_untitled = FALSE; | |
| static gboolean dummy = FALSE; |
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
| # | |
| # Copyright (c) 2015 Rozhuk Ivan <[email protected]> | |
| # All rights reserved. | |
| # | |
| # Redistribution and use in source and binary forms, with or without | |
| # modification, are permitted provided that the following conditions | |
| # are met: | |
| # 1. Redistributions of source code must retain the above copyright | |
| # notice, this list of conditions and the following disclaimer. | |
| # 2. Redistributions in binary form must reproduce the above copyright |