Bug 176389 - JJ: code scratchpad command line test
Summary: JJ: code scratchpad command line test
Status: RESOLVED FIXED
Alias: None
Product: kdevelop
Classification: Applications
Component: Language Support: CPP (old) (show other bugs)
Version: unspecified
Platform: Compiled Sources Unspecified
: NOR wishlist
Target Milestone: ---
Assignee: Amish Naidu
URL:
Keywords: junior-jobs
Depends on:
Blocks:
 
Reported: 2008-11-29 00:02 UTC by jesse
Modified: 2018-12-11 15:06 UTC (History)
5 users (show)

See Also:
Latest Commit:
Version Fixed In:
Sentry Crash Report:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description jesse 2008-11-29 00:02:10 UTC
Version:            (using KDE 4.1.3)
Installed from:    Compiled From Sources

kdevelop should have a small window that allows you to test snippets of code, compile, and immediately display the results.
Comment 1 Milian Wolff 2010-09-03 16:10:33 UTC
This would be easy to implement as a plugin. If someone is interested, contact us.
Comment 2 Akshay Ratan 2013-01-11 16:41:35 UTC
Is this bug still not solved ?
Comment 3 Kevin Funk 2013-01-11 16:56:40 UTC
There's no such plugin yet.

Feel free to provide a patch! :)
Comment 4 Huang Huiming 2013-05-06 04:56:50 UTC
Is there anyone work for the plugin? If not , I want to have a try.
Comment 5 Kevin Funk 2013-05-08 21:56:57 UTC
Huang, just go ahead. You can ask for help in #kdevelop on Freenode. Post your patches to reviewboard, if any. See http://techbase.kde.org/Development/Review_Board
Comment 6 Marcin 2014-08-21 07:32:13 UTC
HI,
Does someone finished this plugin, or it's still open taks.
Comment 7 Kevin Funk 2014-08-21 08:32:25 UTC
No activity on that one, feel free to work on it. Again, you're welcome in #kdevelop.

Personally, I'd love to have such a scratchpad.
Comment 8 Marcin 2014-09-09 19:52:38 UTC
Current development progress with full kdevplatform source is available on https://github.com/darvark/scratchpad
Comment 9 Marcin 2014-10-17 17:34:50 UTC
HI,
Ok, lets assume that I have working plugin. Does after successful compilation, should I remove created files? Or leave them in case when someone want's to run it?

And one more thing, I would be very thankful if someone could check it. Sometimes I have problems that after I use plugin, kdevelop process didn't end.
Comment 10 Kevin Funk 2018-10-28 17:40:05 UTC
There's some progress here:
  https://phabricator.kde.org/D16484
Comment 11 Amish Naidu 2018-12-11 15:06:13 UTC
Git commit 37f68b8d4299a3a9a3ba7a6b1d7d102a9ccea5e1 by Amish Naidu.
Committed on 11/12/2018 at 15:05.
Pushed by anaidu into branch 'master'.

Add scratchpad plugin

Summary:
Adds a scratchpad plugin, which allows you to keep "scratches" of code/text
to experiment or quickly run something without the need for a project.
The plugin adds a new tool-view, which will maintain a list of your scratches
as well as allowing you to compile and run them.
The scratches live in the directory `scratches` in the data directory and
are regular documents so we get all the editing convenience of code-completion
and diagnostics.
Commands used to run them are saved per-scratches and new scratches use the last
used command for that file type/suffix.

Test Plan:
Add the tool-view on the left tool bar and try creating and using the scratches.
Currently no automated tests.

Reviewers: #kdevelop, kfunk

Reviewed By: #kdevelop, kfunk

Subscribers: aaronpuchert, kfunk, gregormi, brauch, kdevelop-devel

Tags: #kdevelop

Differential Revision: https://phabricator.kde.org/D16484

M  +1    -0    plugins/CMakeLists.txt
A  +25   -0    plugins/scratchpad/CMakeLists.txt
A  +38   -0    plugins/scratchpad/emptymessagelistview.h     [License: GPL (v2+)]
A  +261  -0    plugins/scratchpad/scratchpad.cpp     [License: GPL (v2+)]
A  +71   -0    plugins/scratchpad/scratchpad.h     [License: GPL (v2+)]
A  +12   -0    plugins/scratchpad/scratchpad.json
A  +102  -0    plugins/scratchpad/scratchpadjob.cpp     [License: GPL (v2+)]
A  +56   -0    plugins/scratchpad/scratchpadjob.h     [License: GPL (v2+)]
A  +225  -0    plugins/scratchpad/scratchpadview.cpp     [License: GPL (v2+)]
A  +62   -0    plugins/scratchpad/scratchpadview.h     [License: GPL (v2+)]
A  +54   -0    plugins/scratchpad/scratchpadview.ui

https://commits.kde.org/kdevelop/37f68b8d4299a3a9a3ba7a6b1d7d102a9ccea5e1