Configure studio to use vi mode for editing

Hello,
I read the documentation and didn't find the instruction on how to configure studio or debug tools to use vi when editing the file.
Can I ask the suggestions how to get it done?
thank you.
tom

The jVi module is not built-in. It is a NetBeans plugin.
Once you downoad and expand the stuff from the SourceForge site you'll
end up with a directory which contains com-raelity-jvi.nbm and org-netbeans-modules-jvi.nbm.
then from the SolStudio IDE or dbxtool chose Tools->Plugins.
Choose the Downloaded tab and click on AddPlugins.
Choose those two nbm's and let the plugin wizard guide you.

Similar Messages

  • I am using 4K Footages for editing in Premiere pro CC 2014, but its getting crash in between at every 15 to 20 mins. Kindly suggest how can it be solved, does any plugins or settings needed to edit 4K footages? Also would like to mention that footages fra

    I am using 4K Footages for editing in Premiere pro CC 2014, but its getting crash in between at every 15 to 20 mins. Kindly suggest how can it be solved, does any plugins or settings needed to edit 4K footages? Also would like to mention that footages frame rates are 29.97 and i have set timeline to 25 FPS is requirement by client. kindly revert. Thanks

    Thanks Richarad ..It has solved the problem but still crashes some times .As the programme has the break (bumper)after every five minutes ,i hope it will not compress bumper time too after export.

  • I am facing problem regarding graphical user interface. I am using text box for editing files. I want to show the line numbers and graphical breakpoint​s along with text box. Can anybody help me in this? Thanks.

    I am facing problem regarding graphical user interface. I am using text box for editing files. I want to show the line numbers and graphical breakpoints along with text box. Can anybody help me in this? Thanks.

    Thanks for you reply.
    But actually I don't want to show the \ (backslashes) to the user in my text box. 
    Ok let me elaborate this problem little more. 
    I want to show my text box as it is in normal editors e.g. In Matlab editor. There is a text box and on left side the gray bar shows the line numbers corresponding to the text. Further more i want that the user should be able to click on any line number to mark specific line as breakpoint (red circle or any graphical indication for mark). 
    Regards,
    Waqas Ahmad

  • What is the best program to use on Mac for editing, cropping photos from my computer. Looking for a free program that is good.

    What is the best program to use on Mac for editing, cropping photos from my computer. Looking for a free program that is good.

    If your needs are limited to those tasks then both Preview and iPhoto will fit the bill They are already on your Mac. There is a free download from Google called Picasa available here:
    http://picasa.google.com/
      It works much the in same manner as iPhoto. For some really heavy duty work there is GIMP available from SourceForge:
    http://www.gimp.org/macintosh/  Also a free download.
    Message was edited by: kennethfromtoronto

  • How to use same jsp for edit and add form

    Hi,
    I would like to use the same .jsp file for edit and add. I just want to change a few controls based on edit/add mode. How do I configure this in the jsp?

    In the environment I currently have access to do not have similar setup.
    Let say you setup the DFF1 default value to $HEADER.customer_name, the name of the DFF is CUSTOMER_NAME, description can be anything.
    In DFF2, default value should be a SQL, where you can reference the DFF1. For example, SELECT DECODE($FLEX.CUSTOMER_NAME, 'ABC', 1, 'DEF', 2, NULL) FROM dual
    In this case, you can reference the DFF1.

  • Unable to use debug mode for x64 application and debug doesn't work when target cpu set to x86

    I am attempting to familiarize myself with Visual Basic programming in Visual Studio 2008, using the Visual Basic Guided Tour in Microsoft Visual Studio 2008 Documentation, and have run into a bit of a road-block.  When following the lesson "It
    Doesn't Work! Finding and Eliminating Run-Time Errors", the IDE does not allow me to edit the code when the debugger hits the intentionally programmed runtime error (divisor set to 0).  It gives me an error that "Changes to 64 bit applications
    are not allowed".  I found some forum postings advising to set the project's Target CPU from "Any CPU" to "x86".  However, when I do that, and re-execute the debug process, the debug fails to stop on the overflow/divide by
    zero error.
    How can I debug my programs when Any CPU/x64 target doesn't allow me to edit the code, and x86 target doesn't appear to recognize obvious runtime errors.

    Hi Tim,
    >>the IDE does not allow me to edit the code when the debugger hits the intentionally programmed runtime error (divisor set to 0).  It gives me an error that "Changes to 64 bit applications are not allowed". 
    I'm afraid that the VS2008 has a limitation for this feature, I mean that Edit and Continue isn't supported on 64-bit.
    Reference:
    http://stackoverflow.com/questions/1498464/changes-to-64-bit-applications-are-not-allowed-when-debugging-in-visual-studio
    http://blogs.msdn.com/b/habibh/archive/2009/10/12/how-to-edit-code-when-debugging-a-64-bit-application.aspx
    But this feature has a improvement in VS2013 now:
    http://blogs.msdn.com/b/visualstudioalm/archive/2013/06/26/debugging-support-for-64-bit-edit-and-continue-in-visual-studio-2013.aspx
    So if possible, you could test it in the latest VS2013 version.
    Best Regards,
    Jack
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How can I use 1 JSP for edit/create functionality?

    Hi All,
    Does anybody have an example of using one JSP for both editing and creating an object? I am pretty sure I can handle most of it, but am not sure about how I can specify different messages from the resource bundle (i.e. modifying the screen title for the different uses, "New Campaign" vs. "Edit Campaign").
    My background is in PHP and DHTML (i.e. more front-end) and I'm just starting with Java and JSF. As such, I want to be sure that I'm using appropriate patterns for my programming.
    Thank you in advance for any help,
    Matt

    I make the difference between modifying an existing object and a new one by the ID in the object. Each object has a unique ID in my app assigned by the database. So if the ID is 0, the user is creating a new object, not stored in the DB yet. I store the object to be edited/modified in the session before displaying the page:
    For the title:
    <h:outputText value="Edit Material" rendered="#{sessionScope.selectedMaterial.materialId != 0}"/>
    <h:outputText value="New Material" rendered="#{sessionScope.selectedMaterial.materialId == 0}"/>For the action buttons:
    <h:commandButton value="Update Material" action="#{MaterialControllerBean.updateMaterial}" rendered="#{sessionScope.selectedMaterial.materialId != 0}"/>
    <h:commandButton value="Create Material" action="#{MaterialControllerBean.createMaterial}" rendered="#{sessionScope.selectedMaterial.materialId == 0}"/>

  • How to use same form for Editing info and creating info.

    Hi all,
    Here my aim is to select the user from list and edit the user info. There is one more option to create the new user.
    Currently I am using two separate input forms one for Editing and one more creating new user.
    Can anyone tel me, how to use the same form for both editing and creating.
    Thanks,
    Ramesh Biradar

    Hi Ramesh,
    I'll make some assumptions about how you're going about this, and then give you a possible solution:
    I assume that you have a table with selection on one page. To edit an item, you wish to select it's radio button and click an edit button to take you to another page with the item filled in to edit it. To create a new item, you'd like to click a "new" button and go to the same page.
    If this is correct, here's the basic steps:
    1). Assuming you have both the list and edit pages already created, make sure you have a JSF navigation case defined going from the list page to the edit page. I'll call this navigation case "goToEditPage" for this discussion.
    2). To make the edit button, drag a command button from the component palette and drop it on the af:TableSelectOne (the column in your table containing the radio buttons for selection).
    3). Set the action property on this command button to "goToEditPage".
    4). Now, to make the create button, drag a command button from the component palette somewhere on the page. I like to put mine in a panelButtonBar inside the actions facet of an af:Page component.
    5). Now, for the Action property of this command button, bind it to a method in your page's backing bean. The code will look something like this:
    public String performNew()
        BindingContainer bindings = getBindings();
        OperationBinding operationBinding = bindings.getOperationBinding("Create");
        Object result = operationBinding.execute();
        if (!operationBinding.getErrors().isEmpty())
          return null;
        return "goToEditPage";
    }Hope this is helpful, Ramesh.
    Regards,
    John

  • Should I use premiere elements for editing 24p DSLR footage?

    Have been shooting with a t4i in 24p and am doing some small business videos - I need some advice on whether I should use premiere elements to edit this footage.  Also need to be able drawing lines, add arrows and animate them etc.  Is this beyond premiere?  Have been using elements for about 5 years on and off, maybe time to step it up?

    fishmor
    I do not see why not.
    It is getting late where I am so I will leave you with some things to consider -
    This is what I have found ouy about 24p mentions in Premiere Elements that seem to have no function...
    ATR Premiere Elements Troubleshooting: PE: 24p Conversion Methods, Pulldowns, and Related Interpret Footage
    Probably more than you want to know but.....
    As for ability to draw lines, add arrows, and animate them, etc. See program's Titler and its Text Styles Animations Shape sections.
    The Premiere Elements Titler offers more opportunities than just text titles. But, sometimes you may want to create a graphic in Photoshop Elements and import it into Premiere Elements. Keep in mind that Premiere Pro is not a photo editor either. Some things that I have done in Premiere Elements in the way of animation....
    ATR Premiere Elements Troubleshooting: PE: Perspective Effects
    ATR Premiere Elements Troubleshooting: PE12: Motion Tracking/What To Use To Track Object?
    ATR

  • Can I use Interpreted Mode for OTA distribution using an Enterprise In-House certificate?

    It seems due to an issue with duplicate SWFs, that I can only get my .ipa to package using Interpreted Mode (not AOT).
    This, of course, has been working fine using development provisioning and has tested fine using an enterprise distribution provisioning and certificate.
    The client will be distributing the .ipa to in-house staff using over-the-air (this will NOT be an Apple Store item). I haven't seen anything saying one way or another whether there are any requirements, such as that the .ipa be compiled AOT.
    Could someone please confirm, or point me to the appropriate references? I don't want to discover this hiccup once the final .ipa has been released to the client and they attempt to distribute to their staff.

    You can use anything that you want with Enterprise certificates and you can break the rules. But only for Enterprise in-house distributuion.

  • Is anyone using iMovie 08 for editing footage from a Canon 5D Mark 11?

    I'm interested to converse with anyone that is using iMovie 08 to edit Movie files from the Canon 5D Mark 11.

    HI Stephen,
    I have iMovie 09 on order hoping that it would alleviate this issue - sounds like it does not. Similarly to you, my footage imports fine, but the application crashes when the curser is moving over the video. I am lead to believe that iMovie just cannot cope with the high resolution of the 5D Mark 11.
    I have tried the same files on other Macs and the same issue occurs, so it is not my machine or software issues on my machine. All of my software is up to date - except for Quicktime. I am running 7.5.5, so don't bother trying to roll back from 7.6 because it will not help.
    I have also tried the footage on Final Cut Express and it crashes that application as well. I understand the Final Cut Pro can work with the files. At this stage I presume that Canon 5D mark11 users cannot edit footage on iMovie or FCE and possibly some other applications.
    Let us hope and pray that Apple and Canon can sort this out!
    Scott

  • How to configure Mail to use different ports for POP and SMTP?

    I am trying to configure Mail for my AT&T account. It requires me to configure POP (incoming) mail for port 995, and SMTP (outgoing) mail for port 465. However there doesn't seem to be an option to configure different ports for these. Is that correct, or am I missing something?
    Alternatively can I configure two accounts, one for POP incoming and one for SMTP outgoing? My incoming POP account does work, but in configuring an outgoing account I still have to configure a POP server name and that will not work for the outgoing port.
    Any advice on how to solve this would be appreciated.

    Understand. It is really quite easy to do in Mail, too. Kappy told you how to set up the smtp piece. I gave you pop info. These two things are on different panels within Account Preferences.
    To recap his and my posts
    SMTP:
    In Mail Prefs, click on the accounts icon. Click on your att yahoo account on the list. On the right of the window, in the lower portion, you see an smtp server menu. Open it and select edit. Select Edit Server, then click on its Advanced tab. Set up port 465 with SSL.
    POP:
    This is on a different panel in Mail PRefs Accounts. Now in Mail Prefs, click on the accounts icon. Click on your att yahoo account on the list. On the right of the window, you see three tabs, acc't info, mbox behaviors, and Advanced. This is where things are different than for smtp. You are going to configure stuff on a different "advanced" panel than where you were for the smtp stuff. Click on the advanced tab. There is a field for port with a SSL checkbox next to it and an authentication drop down menu. Check the box and it should quickfill change from 110 to 995. Autentication drop down is probably already default to password.
    Did you visit the URL I gave you previously? It even gives you screen shots.

  • Use GUI mode for OEL guest operating system.

    Hi,
    Another "newbie" question - so please be patient.
    We have a VM Server and have used a VM Template to create a VM with Oracle 11g on OLE5.2 - all this works great and them VM operates and we can connect to the VM from VM Manager and login (character mode) etc.
    Now... how do we get OEL5.2 to run in graphical mode? I have seen some Oracle By Example posts that seem to show this in operation using TightVNC on the client and connecting to the VNC port for the VM - but when we do this it just brings up the character mode login console.
    Any and all help/pointers is much appreciated.
    Regards,
    Bren

    My preferred way is to use SSH with X11 forwarding. It provides a secure means to use graphical applications over a network. Instead of running the GUI application on the remote server, you run it on your client locally, albeit interacting with the remote server. For this you don't need to start X on your remote server and can leave it at runlevel 3. You would simply login from your client machine to the remote host:
    ssh -X account@servername_or_ip
    It will automatically setup your X11 display environment and you can type your X11 app right at the command prompt. For instance:
    system-config-users
    system-config-services
    system-config-network
    etc.
    If you need to find out what application is hidden behind which menu option, you could type 'alacarte' to analyze the standard menu.
    Of course you will need a SSH client, with an X-Terminal and a X11 server on your client machine. If you have to deal with Windows, you might find the following useful (free):
    http://mobaxterm.mobatek.net/en/
    If you run on MacOSX, you already have the most featured X-windows terminal that exits, and just may have to install X11 from the optional install of the OS installation CD.

  • DOC_CHANGE_BADI not triggered for OLD SC-SAVE mode for EDIT- SAVE steps

    Hi Experts ,
    We have SRM7.0 ( SP08) with ECC6 ( Ehp4) having Classic Scenario.
    In our business Price list ( Price in ECC Contract) will be always change  so, we have done small enhancement in BBP_DOC_CHANGE_BADI in method BBP_SC_CHANGE, to get latest Price of the already assigned SoS ( ECC Contract ).
    When we create new SC/Template  from scratch or copying old SC or Template it brings latest prices correctly .
    Case 1)Template - If we EDIT Template  &  just click on u201CSAVE AS TEMPLATEu201D button (w/o any change!) .. Doc Change BADi called & Template items updates with  latest Prices .
    Case 2) OLD SC in SAVE Mode -But exactly same is not happening with OLD SC with SAVE mode ?  i.e.  When we open Old SC in EDIT Mode and SAVE it ( or even Check and refresh it) ..it do not updates items with latest Prices of Contract. It means Doc Change BADi is not getting called..by clicking on just  EDIT and SAVE buttons, unlike Template .
    If we have to change something i.e. enter some Text  or add one line Item and deleted it again..etc, then only Doc Change BADi is getting called and updated with latest pricesu2026which is not recommendable ..to change the OLD SC in SAVE mode every time.
    Can anyone please suggest/confirm,  why DOC_CHANGE_BADI is not getting triggered  in case of Mode , if  we open OLD SC( SAVE status) in EDIT Mode  and just SAVE it..just like Template ?
    What can be done to achieve above ?
    Thank you .
    NAP

    We are having the same SRM release and SP level. I did a brief test for the two scenarios you mentioned. There was no difference for me: neither template edit/save without change or old SC edit/save without change went through BBP_DOC_CHANGE_BADI implementation. And I wouldn't expect there is a different behavior here as an SC template is also technically an SC document. I would suggest that you make an attempt to change the price in BBP_DOC_SAVE_BADI implementation instead.

  • Configuring CF10 to use X-forwarded-for instead of remote_addr

    I am using an AWS instance behind a load balancer with NAT. It has its advantages, but one of its disadvantages is the remote_addr coming through is the remote_addr of the ELB.
    http://leaguemanager.playerspace.com/test.cfm
    What I'm trying to do is trick or configure the CF10 Administrator > Debugging and Logging > Enabled Request Debugging Output to use the x-forwarded-for as opposed to the remote_addr so I can use server debugging without that information being made visible to the public.
    Is this possible by, say, modifying a file somewhere, to have the IP addresses set in Debugging and Logging > Debugging IP Addresses to be matched with the true client's personal IP (x-forwarded-for)?
    JS

    Never mind, I figured it out.
    c:\coldfusion10\cfusion\runtime\conf\server.xml
    Added
    <Valve className="org.apache.catalina.valves.RemoteIpValve" protocolHeader="X-Forwarded-Proto" remoteIpHeader="X-Forwarded-For" protocolHeaderHttpsValue="https" />

Maybe you are looking for

  • Imac 27 crashing

    Hi all, Getting sort of desperate here. I've got an mid 2011 iMac 27 (12,2) that's suffering from massive crashing. I run time machine so I'm not too concerned about data. Running Mavericks right now for an OS What's happening is that from time to ti

  • My pc failed and I lost my iTunes library completely. How do I transfer all my music from iPhone to iTunes?

    How do I import my music from the iPhone to iTunes? Like I said my pc crashed and I had to re-download iTunes. My library was gone. I am now hoping I can get it back since I still have everything on the iPhone....

  • Problem using JSTL tag libraries with OC4J 9.0.3

    Hi I'm using the JSTL tag libraries with OC4J 9.0.3. I'm using JDeveloper10.1.2. I put the fmt.tld and c.tld in the WEB-INF directory and I'm adding the jstl.jar and standard.jar library to the EAR file. Both tlds have: <tlib-version>1.0</tlib-versio

  • Show user entered date when ssrs report exported to csv format

    Hi All, How can I show date range parameter entered by user when ssrs report is exported to csv format. my csv output should look like this.... Date : 01/01/2015 TO 01/31/2015 (user selected dates) ID,EmpFirstName,EmpLastName,Location 1,Tom,Garry,NY

  • ALV Colours when making a column editable

    Why do the colours of the entire table change when I make a column editable and how do I change them back to how they were?!