Git Product home page Git Product logo

codeslayer's Introduction

codeslayer's People

Contributors

jeffjohnston avatar

Watchers

 avatar

codeslayer's Issues

Comment plugin confused by commented comments in python.

Example:

---start---
##########################################
# This is a typical header comment block
#
class MyClass(object):
    pass
---end--

Selecting the lines between start and end, and then attempting to comment will 
end up yielding:

---start---
##########################################
 This is a typical header comment block

class MyClass(object):
    pass
---end--

when I would have expected it to have commented the entire block:

---start---
###########################################
## This is a typical header comment block
##
#class MyClass(object):
#    pass
---end--

I would suggest that for single line comment styles (like #, or // in c), only 
the first character of the line be considered.  Additionally, if any line in 
the selected block is not commented the entire block should be considered not 
commented.

Original issue reported on code.google.com by [email protected] on 6 Aug 2011 at 8:02

Java Plugin Word Completion SegFault


If you use word completion in a place where the previous character is a '(' 
then you will get a segfault.

It works fine if there are not characters surrounding the place that you are 
doing the code completion.

Original issue reported on code.google.com by [email protected] on 6 Mar 2012 at 5:10

Breakaway Editor

It would be nice to have a split screen or break-away to allow one file open as 
reference while editing another.  Something I think would be interesting is the 
ability to take a tab and 'pop out' a read-only version of the file that can be 
positioned outside the main editor.  I often keep an instance of gedit running 
that I can copy/paste a file from the main editor to and move to an adjacent 
monitor for reference.  It's really handy to have the functionality of split 
screen without halving the number of lines shown for each file.  Split screen 
is probably the better generic option, but for multiple-monitor users like me a 
separate window would be really handy.  Even a smaller modal/stays on top would 
be useful on a single monitor.

Original issue reported on code.google.com by [email protected] on 6 Jul 2011 at 2:19

Projects Enabled/Disabled Feature

Instead of just adding or removing features we could also have a way to enable 
and disable a project. This way when we remove a project temporarily we do not 
lose all the configuration that goes with it.

Original issue reported on code.google.com by [email protected] on 10 Mar 2012 at 6:45

Editor Tab To Show A Few Levels Of Path Info

It would be nice to have a mouse-over of a tab revealing a few levels of path 
info for the file.   I frequently have 3-4 files of the same name open at any 
given point in time (the framework I use has a naming requirement within a 
given path), and it is sometimes hard to figure out which tab is what. 

Original issue reported on code.google.com by [email protected] on 6 Jul 2011 at 2:13

[patch] GTK+ 3.x initial support

1. apply the attached patch
2. edit configure.ac and change gtk+-2.0 to gtk+-3.0, gtksourceview-2.0 to 
gtksourceview-3.0

The patched source can be built and works fine on both GTK+ 2.x and 3.x.

For better compatibility with GTK+ 3.x, please do:
#define GSEAL_ENABLE
#define G_DISABLE_DEPRECATED
#define GDK_DISABLE_DEPRECATED
#define GTK_DISABLE_DEPRECATED

Basically GTK+ 3.x apps are source compatible with GTK+ 2.24.x. :-)

Original issue reported on code.google.com by [email protected] on 5 Apr 2011 at 6:53

Attachments:

Global Search Clone Tabs

I think it may be useful to clone a global search tab. This would make it 
possible to more easily do a different search based on the same file path. This 
would also allow us to have more than one "Find In Projects" tab. 

Original issue reported on code.google.com by [email protected] on 11 Apr 2011 at 1:48

File list filtering

Enhancement request.  I work in python primarily, which compiles all my .py 
files into .pyc files, so all file lists tend to have mycodefile.py and 
mycodefile.pyc (and possibly mycodefile.py~ if someone's been playing with 
jedit again).  It would be very helpfull to have some kind of extension masking 
or exclude filters on the browser to keep the signal to noise down.

Original issue reported on code.google.com by [email protected] on 19 Apr 2011 at 7:15

Search And Replace Dropdown

We need a find and replace dropdown box. On top of this we should make it so 
that my default the two work together. So, if you select something in the find 
dropdown the replace goes with it.

The motivation behind this is you usually want to have the last replace value 
to be in sync with the find value you were using at the time. Of course once it 
defaults you can always override it.

Original issue reported on code.google.com by [email protected] on 28 Jan 2011 at 7:16

Copy Folder Same Level

When copying a folder on the same tree level the folder does not show up
without refreshing the parent. 

Original issue reported on code.google.com by [email protected] on 29 Apr 2010 at 2:19

codeslayer-preferences.c:22:54: error: codeslayer/codeslayer-preferences-search.h: No such file or directory

What steps will reproduce the problem?
1../configure ; make

What is the expected output? What do you see instead?
There seems to be a header file missing:
codeslayer-preferences.c:22:54: error: 
codeslayer/codeslayer-preferences-search.h: No such file or directory


What version of the product are you using? On what operating system?
CS1.5.0 on Ubuntu 11.04.


Please provide any additional information below.
Build log is attached.

Original issue reported on code.google.com by [email protected] on 17 Sep 2011 at 2:29

Attachments:

Multiple Clipboards

A way to have multiple clipboards. I have not seen this implemented well, but 
it seems that there should be an easy way to get at previous values in the 
clipboard in a way that feels natural.

Original issue reported on code.google.com by [email protected] on 11 Apr 2011 at 1:57

Projects Right Click Selection Bug

When use right click in a file of project pane to delete or rename the file, 
etc, shows me the menu but still has selected the file that was selected 
before. And the answer of this menu repond to this selection. The correct 
behavior would be that, first select the clicked file, and then display the 
menu.

Original issue reported on code.google.com by [email protected] on 19 Apr 2012 at 3:30

Saving Changes When Closing Tabs

Right now when you close tabs there is only one strategy that saves everything. 
We should only be forced to save tabs that actually need saving.

Original issue reported on code.google.com by [email protected] on 2 Dec 2010 at 2:51

Tab selection quirk

I have a somewhat intermittent tab selection issue.

Clicking in the middle of a tab does not always register.  Selection often 
requires carefully hovering the pointer over the tab border and clicking.  

It seems to happen most frequently on the last tab. I cannot recall it ever 
happening on a tab other than the first or last.

In the can_click and cannot_click images attached, the selection bug occurs for 
both tabs.  After opening a third file as shown in the cannot_click_autoimage 
attached, the top two tabs work correctly and only the bottom tab requires the 
pointer to be placed on the border.

Sometimes the last tab works normally, most of the time not.  

My platform is KDE 4.6 on kubuntu, version 1.2.3 of CodeSlayer. 

Original issue reported on code.google.com by [email protected] on 14 Jul 2011 at 6:12

Attachments:

Synchronize Of Editor To Projects Optional

In the file selection panel, prevent the automatic scrolling to highlight the 
currently open file on tab close (or delay it until a tab is explicitly 
clicked).  When dealing with opening and closing files in the same part of the 
file tree, it's fairly annoying to have your place in the tree lost and have to 
hunt for it again after closing a tab.  Several times a day I close file A, 
planning to open file B in the same folder only to find that on close the file 
browser has jumped 15 folders and several screen heights to the location of the 
next automatically selected open tab.  

Original issue reported on code.google.com by [email protected] on 6 Jul 2011 at 2:16

Keep Track Of The Active Editor

We need to be able to keep track of the active editor when we save the group. 
This will allow us to get back to state that we left things.

Original issue reported on code.google.com by [email protected] on 11 Apr 2011 at 1:40

Toggle Incremental Search Smartly

The incremental search should be smarter about its state when using the 
shortcut keys. For instance when the incremental search is on and the shortcut 
keys are invoked then the feature should be turned off.

Original issue reported on code.google.com by [email protected] on 1 May 2011 at 2:25

Clear Search Button

We should have a clear search button that would be useful so that we do not 
have to manually clear out the find and replace fields.

Original issue reported on code.google.com by [email protected] on 2 Dec 2010 at 2:58

Bookmark Open Editors

Some kind of generic bookmarking system so that you can save the open editors. 
Right now the open editors are saved when you shut down or change groups, but 
it would be nice to save open editors as you need to switch tasks within a 
group. 

The idea would be to create this feature in a very generic way so that it could 
be integrated with issue tracking systems through plugins. 

Original issue reported on code.google.com by [email protected] on 11 Apr 2011 at 1:56

Draw Spaces

If you select draw spaces, then activate it once, codeslayer always start 
drawing spaces, but in the menu is disabled.

Another way to put the menu in the wrong state is to switch between groups.

Original issue reported on code.google.com by [email protected] on 19 Apr 2012 at 3:29

Windows 7 IE 9 JMesa doesn't display

What steps will reproduce the problem?
1. BUild a jmesa table
2. display the table using windows 7 IE 9
3. Table does not display

Okay.. When I do not have https://www.feextractor.com in the trusted sites list 
nothing but the logo JPG shows up when we run the app.... just a white screen 
with the logo JPG. When I switch on developer mode the table is downloaded but 
not displayed. I went through the security settings and enabled active 
scripting and scripting with the same result. This happens on three win 7 ie 9 
laptops we have here. The question is did IE 9 do something with IFrames or 
AJAX or Javascript. Are any other apps having these problems? 

What is the expected output? What do you see instead?


On windows 7 ie 9, when I run the application, I just get a blank page where 
the table should be.

What version of the product are you using? On what operating system?

Not sure it is pretty close to the latest
Please provide any additional information below.

The developer mode on ie9 shows the table downloading, but it doesn't display.

Original issue reported on code.google.com by [email protected] on 20 Dec 2011 at 5:26

No set prefixlib correctly in fedora 64-bit, and does not detect the library, and so, can not install plugins

What steps will reproduce the problem?
1. Install Codeslayer.
./configure --prefix=/usr
make && sudo make install

When install see this:
"test -z "/usr/lib/pkgconfig" || /bin/mkdir -p "/usr/lib/pkgconfig"
 /usr/bin/install -c -m 644 codeslayer.pc '/usr/lib/pkgconfig'"

..and effectively codeslayer.pc is instaled in '/usr/lib/pkgconfig' and 
codeslayer.so in /usr/lib

When try to install any codeslayer plugin, ./configure return "No package 
'codeslayer' found"

What is the expected output? What do you see instead?

Expect that install this files in /usr/lib64/pkgconfig/ and /usr/lib64, and in 
this way are correctly detected.


What version of the product are you using? On what operating system?
All Codeslayer versions.
Fedora 14 and 15- 64bits

Please provide any additional information below.
This is because fedora separate libraries from /usr/lib and /usr/lib64. Not so 
all distributions.

Regards.
And Thanks to all.
Matias

Original issue reported on code.google.com by [email protected] on 20 Sep 2011 at 11:01

Java Plugin Class Search With Numbers

When doing a class search in which the class has numbers in it the search does 
not find any matches.

The fix is going to be to add numbers to the regex search terms.

Original issue reported on code.google.com by [email protected] on 6 Mar 2012 at 5:15

Refresh Projects And Select Editor Segment Fault

Open up two files from a subdirectory. Then refresh the tree. Click on the 
first editor and see the tree open up. Click on the document in the tree that 
corresponds to the other editor. You should get a segment fault error.

Original issue reported on code.google.com by [email protected] on 26 Jun 2011 at 6:28

Search/Filtering In Projects Pane

I have thought about having a search box in which you can search on the fly as 
you type. My concern is that I think I could only make it a great experience if 
I index the files for a really fast lookup. If I do that then I have to carry 
the overhead of indexing the files, which would rub against CodeSlayer being 
light. From a feature standpoint it makes sense though.

Original issue reported on code.google.com by [email protected] on 19 Apr 2012 at 3:36

Inline Diff Editor

Ok, so this is a total wishlist item, but eventually I want to have an inline 
diff editor. At work when I use Netbeans this is the one feature that I think 
is insanely useful. Seems that we could to something similar using the diff 
command with subversion and/or git.

Original issue reported on code.google.com by [email protected] on 11 Apr 2011 at 1:52

Enhancement Request: Word wrap option per file

This request is because word wrap, though not needed for code, is a big help 
for those of us who find it convenient to view and edit related documentation 
and other text files in the same editor.

Ideally enabling word wrap might be automatic, that is on by default for a 
(small) set of specified filetypes.  Suggestion: a new Preferences item in the 
Editor tab, perhaps reading "Enable Word Wrap for Filetypes:" followed by an 
editable text box with whitespace separated entries such as ".txt .log .doc".

Would be handy.  Thanks for considering it ... and for an already great code 
editor.

Original issue reported on code.google.com by [email protected] on 10 Jun 2011 at 3:07

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.