SlideShare une entreprise Scribd logo
1  sur  2
Télécharger pour lire hors ligne
Highlights of NetBeans IDE 8.0 Keyboard Shortcuts & Code Templates
Finding, Searching, and Replacing
Ctrl-F3 Search word at insert point
F3/Shift-F3 Find next/previous in file
Ctrl-F/H Find/Replace in file
Alt-F7 Find usages
Ctrl-Shift-F/H Find/replace in projects
Alt-Shift-U Find usages results
Alt-Shift-H Turn off search result highlights
Ctrl-R Rename
Ctrl-U, then U Convert selection to uppercase
Ctrl-U, then L Convert selection to lowercase
Ctrl-U, then S Toggle case of selection
Ctrl-Shift-V Paste formatted
Ctrl-Shift-D Show Clipboard History
Ctrl-I Jump to quick search field
Alt-Shift-L Copy file path
Navigating through Source Code
Ctrl-O/Alt-Shift-O Go to type/file
Ctrl-Shift-T Go to JUnit test
Alt-O Go to source
Ctrl-B Go to declaration
Ctrl-G Go to line
Ctrl-Shift-M Toggle add/remove bookmark
Ctrl-Shift-Period /
Comma
Next/previous bookmark
Ctrl-Period /
Comma
Next/previous usage/compile
error
Alt-Shift-Period /
Comma
Select next/previous element
Ctrl-Shift-1/2/3 Select in
Projects/Files/Favorites
Ctrl-[ Move caret to matching bracket
Ctrl-K/Ctrl-Shift K Next/previous word match
Alt-Left/Alt-
Right/Ctrl-Q
Go backward/forward/to last
edit
Alt Up / Down Next/previous marked
occurrence
Coding in C/C++
Alt-Shift-C Go to declaration
Ctrl-F9 Evaluate expression
Coding in Java
Alt-Insert Generate code
Ctrl-Shift-I Fix all class imports
Alt-Shift-I Fix selected class's import
Alt-Shift-F Format selection
Alt-Shift Left/
Right/Up/Down
Shift lines left/right/up/down
Ctrl-Shift-R Rectangular Selection (Toggle)
Ctrl-Shift-Up/D Copy lines up/down
Ctrl/Alt-F12 Inspect members/hierarchy
Ctrl-Shift-C/ Ctrl-/Add/remove comment lines
Ctrl-E Delete current line
Compiling, Testing, and Running
F9 Compile package/ file
F11 Build main project
Shift-F11 Clean & build main project
Ctrl-Q Set request parameters
Ctrl-Shift-U Create Unit test
Ctrl-F6/Alt-F6 Run Unit test on file/project
F6/Shift-F6 Run main project/file
Opening and Toggling between Views
Ctrl-Tab (Ctrl-`) Switch between open
documents by order used
Shift-Escape Maximize window (toggle)
Ctrl-F4/Ctrl-W Close selected window
Ctrl-Shift-F4 Close all windows
Shift-F10 Open contextual menu
Ctrl-PgUp /
PgDown
Switch between open documents
by order of tabs
Ctrl-Alt-T Reopen recently closed file
Ctrl-Alt-PgUp /
PgDown
Toggle between editor types
Alt-Mouse Wheel
Up / Down
Zoom text in / out
Ctrl-Shift-S Toggle Inspect Mode
Debugging
Ctrl-F5 Start debugging main project
Ctrl-Shift-F5 Start debugging current file
Ctrl-Shift-F6 Start debugging test for file
Shift-F5/F5 Stop/Continue debugging session
F4 Run to cursor location in file
F7/F8 Step into/over
Ctrl-F7 Step out
Ctrl-Alt-Up Go to called method
Ctrl-Alt-Down Go to calling method
Ctrl-F9 Evaluate expression
Ctrl-F8 Toggle breakpoint
Ctrl-Shift-F8 New breakpoint
Ctrl-Shift-F7 New watch
When typing in the Source Editor, generate the text in the
right-column below by typing the abbreviation that is
listed in the left-column and then pressing Tab.
Java Editor Code Templates
En Enumeration
Ex Exception
Ob Object
Psf public static final
Psfb public static final boolean
Psfi public static final int
Psfs public static final String
St String
ab abstract
Highlights of NetBeans IDE 8.0 Keyboard Shortcuts & Code Templates
as assert true;
bcom /**/
bo boolean
br break;
ca catch (
cl class
cn continue
db double
df default:
dowhile do {
} while (condition);
eq equals
ex extends
fa false
fcom // <editor-fold></editor-fold>
fi final
fl float
forc for (Iterator it = collection.iterator();
it.hasNext();) {
Object elem = (Object) it.next();
}
fore for (Object elem : iterable) {
}
fori for (int i = 0; i < arr.length; i++) {}
forl for (int i = 0; i < lst.size(); i++) {
Object object = lst.get(i); }
forst for (StringTokenizer st = new
StringTokenizer(""); st.hasMoreTokens();) }
forv for (int i = 0; i < vct.size(); i++) {
Object object = vct.elementAt(i);}
fy finally{ |}
ie interface
ifelse if (condition){}else {
}
iff if (exp) {}
im implements
inst if (exp instanceof Object) {
Object obj = (Object) exp;
iof instanceof
ir import
le length
na native
newo Object name = new Object(args);
pe protected
pr private
psf private static final
psfb private static final boolean
psfi private static final int
psfs private static final String
pst printStackTrace();
psvm public static void main(String[] args){
}
pu public
re return
runn Runnable runnable = new Runnable() {
public void run() {}};
serr System.err.println ("|");
sh short
sout System.out.println ("|");
soutv System.out.println("Object = " + Object);
st static
su super
sw switch (var) { case val: break;
default: throw new AssertionError();}
sy synchronized
tds Thread.dumpStack();
th throws
tr transient
trycatch try {}
catch (Exception e) {}
tw throw
vo volatile
wh while (
whileit while (it.hasNext()) {
Object elem = (Object) it.next();}
whilen while (en.hasMoreElements()) {
Object elem = (Object) en.nextElement();}
whilexp while (exp) {}
JSP Editor Code Templates
al window.alert(${message});
br ${no-indent}break;
ca ${no-indent}case
catch
catch (${exception}) {
${cursor}
}
cond window.console.debug(${debug});
coni window.console.info(${info});
conl window.console.log(${log});
conw window.console.warn(${warn});
ct ${no-indent}catch
do ${no-indent}document
dw document.write(${message});
else
Else {
${cursor}
}
eq ${no-indent}equals
fa ${no-indent}false
forin
for (var ${item} in ${object}) {
${selection}${cursor}
}
fun
function ${name}(${parameters}) {
${selection}${cursor}
}
hi ${no-indent}window.history
if
if (${expr}) {
${selection}${cursor}
}
iof ${no-indent}instanceof
json {"${field}": "${value}"}
lo ${no-indent}window.location
new
${no-indent}var ${name} = new ${type}($
{arguments});
prf
${propertyName}: function(${parameters}) {
${cursor}
},
re ${no-indent}return
var ${no-indent}var ${name} = ${value};
win ${no-indent}window

Contenu connexe

Tendances

devLink - What's New in C# 4?
devLink - What's New in C# 4?devLink - What's New in C# 4?
devLink - What's New in C# 4?Kevin Pilch
 
F# Eye 4 the C# Guy - DDD Cambridge Nights 2014
F# Eye 4 the C# Guy -  DDD Cambridge Nights 2014F# Eye 4 the C# Guy -  DDD Cambridge Nights 2014
F# Eye 4 the C# Guy - DDD Cambridge Nights 2014Phillip Trelford
 
Python-02| Input, Output & Import
Python-02| Input, Output & ImportPython-02| Input, Output & Import
Python-02| Input, Output & ImportMohd Sajjad
 
Get Functional on the CLR: Intro to Functional Programming with F#
Get Functional on the CLR: Intro to Functional Programming with F# Get Functional on the CLR: Intro to Functional Programming with F#
Get Functional on the CLR: Intro to Functional Programming with F# David Alpert
 
Theory of automata and formal language lab manual
Theory of automata and formal language lab manualTheory of automata and formal language lab manual
Theory of automata and formal language lab manualNitesh Dubey
 
Top down and botttom up Parsing
Top down     and botttom up ParsingTop down     and botttom up Parsing
Top down and botttom up ParsingGerwin Ocsena
 
Eclipse shortcut[most usuage]
Eclipse shortcut[most usuage]Eclipse shortcut[most usuage]
Eclipse shortcut[most usuage]Siddiq Abu Bakkar
 
Recursive implicit proofs with Shapeless HLists
Recursive implicit proofs with Shapeless HListsRecursive implicit proofs with Shapeless HLists
Recursive implicit proofs with Shapeless HListsVladimir Pavkin
 
Functional programming with FSharp
Functional programming with FSharpFunctional programming with FSharp
Functional programming with FSharpDaniele Pozzobon
 
Types of Statements in Python Programming Language
Types of Statements in Python Programming LanguageTypes of Statements in Python Programming Language
Types of Statements in Python Programming LanguageExplore Skilled
 

Tendances (20)

devLink - What's New in C# 4?
devLink - What's New in C# 4?devLink - What's New in C# 4?
devLink - What's New in C# 4?
 
F# Eye 4 the C# Guy - DDD Cambridge Nights 2014
F# Eye 4 the C# Guy -  DDD Cambridge Nights 2014F# Eye 4 the C# Guy -  DDD Cambridge Nights 2014
F# Eye 4 the C# Guy - DDD Cambridge Nights 2014
 
Unit2 input output
Unit2 input outputUnit2 input output
Unit2 input output
 
Python 3000
Python 3000Python 3000
Python 3000
 
Python-02| Input, Output & Import
Python-02| Input, Output & ImportPython-02| Input, Output & Import
Python-02| Input, Output & Import
 
stack
stackstack
stack
 
Loops in Python
Loops in PythonLoops in Python
Loops in Python
 
Get Functional on the CLR: Intro to Functional Programming with F#
Get Functional on the CLR: Intro to Functional Programming with F# Get Functional on the CLR: Intro to Functional Programming with F#
Get Functional on the CLR: Intro to Functional Programming with F#
 
Theory of automata and formal language lab manual
Theory of automata and formal language lab manualTheory of automata and formal language lab manual
Theory of automata and formal language lab manual
 
Left factor put
Left factor putLeft factor put
Left factor put
 
Top down and botttom up Parsing
Top down     and botttom up ParsingTop down     and botttom up Parsing
Top down and botttom up Parsing
 
Eclipse shortcut[most usuage]
Eclipse shortcut[most usuage]Eclipse shortcut[most usuage]
Eclipse shortcut[most usuage]
 
C language updated
C language updatedC language updated
C language updated
 
Reactive fsharp
Reactive fsharpReactive fsharp
Reactive fsharp
 
Recursive implicit proofs with Shapeless HLists
Recursive implicit proofs with Shapeless HListsRecursive implicit proofs with Shapeless HLists
Recursive implicit proofs with Shapeless HLists
 
Python for Beginners(v2)
Python for Beginners(v2)Python for Beginners(v2)
Python for Beginners(v2)
 
F# Console class
F# Console classF# Console class
F# Console class
 
Functional programming with FSharp
Functional programming with FSharpFunctional programming with FSharp
Functional programming with FSharp
 
PostThis
PostThisPostThis
PostThis
 
Types of Statements in Python Programming Language
Types of Statements in Python Programming LanguageTypes of Statements in Python Programming Language
Types of Statements in Python Programming Language
 

Similaire à Shortcuts

best hotels in Pune
best hotels in Punebest hotels in Pune
best hotels in PuneKhushiRaj39
 
Shortcuts JAVA
Shortcuts JAVAShortcuts JAVA
Shortcuts JAVATito O
 
IntelliJIDEA_ReferenceCard.pdf
IntelliJIDEA_ReferenceCard.pdfIntelliJIDEA_ReferenceCard.pdf
IntelliJIDEA_ReferenceCard.pdfDvrIsis2
 
Using eclipse-shortcuts-key-for-fast-coding
Using eclipse-shortcuts-key-for-fast-codingUsing eclipse-shortcuts-key-for-fast-coding
Using eclipse-shortcuts-key-for-fast-codingParikshit Kumar Singh
 
Programming in C
Programming in CProgramming in C
Programming in Csujathavvv
 
Word shortcuts
Word shortcutsWord shortcuts
Word shortcutsshahid138
 
Visual Studio 2010 - Microsoft Visual C# Key Bindings
Visual Studio 2010 - Microsoft Visual C# Key BindingsVisual Studio 2010 - Microsoft Visual C# Key Bindings
Visual Studio 2010 - Microsoft Visual C# Key BindingsGlobalLogic Ukraine
 
MS-Commands
 MS-Commands MS-Commands
MS-CommandsAns Ali
 
File handling-c programming language
File handling-c programming languageFile handling-c programming language
File handling-c programming languagethirumalaikumar3
 
Eclipse keyboard shortcuts
Eclipse keyboard shortcutsEclipse keyboard shortcuts
Eclipse keyboard shortcutsSuman Saha
 

Similaire à Shortcuts (20)

best hotels in Pune
best hotels in Punebest hotels in Pune
best hotels in Pune
 
Shortcuts JAVA
Shortcuts JAVAShortcuts JAVA
Shortcuts JAVA
 
Netbeans keyboard shortcut
Netbeans keyboard shortcutNetbeans keyboard shortcut
Netbeans keyboard shortcut
 
IntelliJIDEA_ReferenceCard.pdf
IntelliJIDEA_ReferenceCard.pdfIntelliJIDEA_ReferenceCard.pdf
IntelliJIDEA_ReferenceCard.pdf
 
Netbeans help
Netbeans helpNetbeans help
Netbeans help
 
Using eclipse-shortcuts-key-for-fast-coding
Using eclipse-shortcuts-key-for-fast-codingUsing eclipse-shortcuts-key-for-fast-coding
Using eclipse-shortcuts-key-for-fast-coding
 
Asp key shortcut
Asp key shortcutAsp key shortcut
Asp key shortcut
 
Asp key shortcut
Asp key shortcutAsp key shortcut
Asp key shortcut
 
Programming in C
Programming in CProgramming in C
Programming in C
 
Programming in C
Programming in CProgramming in C
Programming in C
 
Word shortcuts
Word shortcutsWord shortcuts
Word shortcuts
 
Visual Studio 2010 - Microsoft Visual C# Key Bindings
Visual Studio 2010 - Microsoft Visual C# Key BindingsVisual Studio 2010 - Microsoft Visual C# Key Bindings
Visual Studio 2010 - Microsoft Visual C# Key Bindings
 
Rstudio ide-cheatsheet
Rstudio ide-cheatsheetRstudio ide-cheatsheet
Rstudio ide-cheatsheet
 
Rstudio ide-cheatsheet
Rstudio ide-cheatsheetRstudio ide-cheatsheet
Rstudio ide-cheatsheet
 
rstudio-ide
rstudio-iderstudio-ide
rstudio-ide
 
Unit v
Unit vUnit v
Unit v
 
MS-Commands
 MS-Commands MS-Commands
MS-Commands
 
Unit5 C
Unit5 C Unit5 C
Unit5 C
 
File handling-c programming language
File handling-c programming languageFile handling-c programming language
File handling-c programming language
 
Eclipse keyboard shortcuts
Eclipse keyboard shortcutsEclipse keyboard shortcuts
Eclipse keyboard shortcuts
 

Dernier

SuccessFactors 1H 2024 Release - Sneak-Peek by Deloitte Germany
SuccessFactors 1H 2024 Release - Sneak-Peek by Deloitte GermanySuccessFactors 1H 2024 Release - Sneak-Peek by Deloitte Germany
SuccessFactors 1H 2024 Release - Sneak-Peek by Deloitte GermanyChristoph Pohl
 
Cloud Data Center Network Construction - IEEE
Cloud Data Center Network Construction - IEEECloud Data Center Network Construction - IEEE
Cloud Data Center Network Construction - IEEEVICTOR MAESTRE RAMIREZ
 
Automate your Kamailio Test Calls - Kamailio World 2024
Automate your Kamailio Test Calls - Kamailio World 2024Automate your Kamailio Test Calls - Kamailio World 2024
Automate your Kamailio Test Calls - Kamailio World 2024Andreas Granig
 
How to submit a standout Adobe Champion Application
How to submit a standout Adobe Champion ApplicationHow to submit a standout Adobe Champion Application
How to submit a standout Adobe Champion ApplicationBradBedford3
 
Folding Cheat Sheet #4 - fourth in a series
Folding Cheat Sheet #4 - fourth in a seriesFolding Cheat Sheet #4 - fourth in a series
Folding Cheat Sheet #4 - fourth in a seriesPhilip Schwarz
 
Odoo 14 - eLearning Module In Odoo 14 Enterprise
Odoo 14 - eLearning Module In Odoo 14 EnterpriseOdoo 14 - eLearning Module In Odoo 14 Enterprise
Odoo 14 - eLearning Module In Odoo 14 Enterprisepreethippts
 
Unveiling Design Patterns: A Visual Guide with UML Diagrams
Unveiling Design Patterns: A Visual Guide with UML DiagramsUnveiling Design Patterns: A Visual Guide with UML Diagrams
Unveiling Design Patterns: A Visual Guide with UML DiagramsAhmed Mohamed
 
Introduction Computer Science - Software Design.pdf
Introduction Computer Science - Software Design.pdfIntroduction Computer Science - Software Design.pdf
Introduction Computer Science - Software Design.pdfFerryKemperman
 
Unveiling the Future: Sylius 2.0 New Features
Unveiling the Future: Sylius 2.0 New FeaturesUnveiling the Future: Sylius 2.0 New Features
Unveiling the Future: Sylius 2.0 New FeaturesŁukasz Chruściel
 
英国UN学位证,北安普顿大学毕业证书1:1制作
英国UN学位证,北安普顿大学毕业证书1:1制作英国UN学位证,北安普顿大学毕业证书1:1制作
英国UN学位证,北安普顿大学毕业证书1:1制作qr0udbr0
 
SpotFlow: Tracking Method Calls and States at Runtime
SpotFlow: Tracking Method Calls and States at RuntimeSpotFlow: Tracking Method Calls and States at Runtime
SpotFlow: Tracking Method Calls and States at Runtimeandrehoraa
 
Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...
Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...
Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...OnePlan Solutions
 
Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...
Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...
Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...OnePlan Solutions
 
How to Track Employee Performance A Comprehensive Guide.pdf
How to Track Employee Performance A Comprehensive Guide.pdfHow to Track Employee Performance A Comprehensive Guide.pdf
How to Track Employee Performance A Comprehensive Guide.pdfLivetecs LLC
 
Buds n Tech IT Solutions: Top-Notch Web Services in Noida
Buds n Tech IT Solutions: Top-Notch Web Services in NoidaBuds n Tech IT Solutions: Top-Notch Web Services in Noida
Buds n Tech IT Solutions: Top-Notch Web Services in Noidabntitsolutionsrishis
 
Software Project Health Check: Best Practices and Techniques for Your Product...
Software Project Health Check: Best Practices and Techniques for Your Product...Software Project Health Check: Best Practices and Techniques for Your Product...
Software Project Health Check: Best Practices and Techniques for Your Product...Velvetech LLC
 
Ahmed Motair CV April 2024 (Senior SW Developer)
Ahmed Motair CV April 2024 (Senior SW Developer)Ahmed Motair CV April 2024 (Senior SW Developer)
Ahmed Motair CV April 2024 (Senior SW Developer)Ahmed Mater
 
Alfresco TTL#157 - Troubleshooting Made Easy: Deciphering Alfresco mTLS Confi...
Alfresco TTL#157 - Troubleshooting Made Easy: Deciphering Alfresco mTLS Confi...Alfresco TTL#157 - Troubleshooting Made Easy: Deciphering Alfresco mTLS Confi...
Alfresco TTL#157 - Troubleshooting Made Easy: Deciphering Alfresco mTLS Confi...Angel Borroy López
 
What is Advanced Excel and what are some best practices for designing and cre...
What is Advanced Excel and what are some best practices for designing and cre...What is Advanced Excel and what are some best practices for designing and cre...
What is Advanced Excel and what are some best practices for designing and cre...Technogeeks
 
Taming Distributed Systems: Key Insights from Wix's Large-Scale Experience - ...
Taming Distributed Systems: Key Insights from Wix's Large-Scale Experience - ...Taming Distributed Systems: Key Insights from Wix's Large-Scale Experience - ...
Taming Distributed Systems: Key Insights from Wix's Large-Scale Experience - ...Natan Silnitsky
 

Dernier (20)

SuccessFactors 1H 2024 Release - Sneak-Peek by Deloitte Germany
SuccessFactors 1H 2024 Release - Sneak-Peek by Deloitte GermanySuccessFactors 1H 2024 Release - Sneak-Peek by Deloitte Germany
SuccessFactors 1H 2024 Release - Sneak-Peek by Deloitte Germany
 
Cloud Data Center Network Construction - IEEE
Cloud Data Center Network Construction - IEEECloud Data Center Network Construction - IEEE
Cloud Data Center Network Construction - IEEE
 
Automate your Kamailio Test Calls - Kamailio World 2024
Automate your Kamailio Test Calls - Kamailio World 2024Automate your Kamailio Test Calls - Kamailio World 2024
Automate your Kamailio Test Calls - Kamailio World 2024
 
How to submit a standout Adobe Champion Application
How to submit a standout Adobe Champion ApplicationHow to submit a standout Adobe Champion Application
How to submit a standout Adobe Champion Application
 
Folding Cheat Sheet #4 - fourth in a series
Folding Cheat Sheet #4 - fourth in a seriesFolding Cheat Sheet #4 - fourth in a series
Folding Cheat Sheet #4 - fourth in a series
 
Odoo 14 - eLearning Module In Odoo 14 Enterprise
Odoo 14 - eLearning Module In Odoo 14 EnterpriseOdoo 14 - eLearning Module In Odoo 14 Enterprise
Odoo 14 - eLearning Module In Odoo 14 Enterprise
 
Unveiling Design Patterns: A Visual Guide with UML Diagrams
Unveiling Design Patterns: A Visual Guide with UML DiagramsUnveiling Design Patterns: A Visual Guide with UML Diagrams
Unveiling Design Patterns: A Visual Guide with UML Diagrams
 
Introduction Computer Science - Software Design.pdf
Introduction Computer Science - Software Design.pdfIntroduction Computer Science - Software Design.pdf
Introduction Computer Science - Software Design.pdf
 
Unveiling the Future: Sylius 2.0 New Features
Unveiling the Future: Sylius 2.0 New FeaturesUnveiling the Future: Sylius 2.0 New Features
Unveiling the Future: Sylius 2.0 New Features
 
英国UN学位证,北安普顿大学毕业证书1:1制作
英国UN学位证,北安普顿大学毕业证书1:1制作英国UN学位证,北安普顿大学毕业证书1:1制作
英国UN学位证,北安普顿大学毕业证书1:1制作
 
SpotFlow: Tracking Method Calls and States at Runtime
SpotFlow: Tracking Method Calls and States at RuntimeSpotFlow: Tracking Method Calls and States at Runtime
SpotFlow: Tracking Method Calls and States at Runtime
 
Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...
Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...
Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...
 
Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...
Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...
Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...
 
How to Track Employee Performance A Comprehensive Guide.pdf
How to Track Employee Performance A Comprehensive Guide.pdfHow to Track Employee Performance A Comprehensive Guide.pdf
How to Track Employee Performance A Comprehensive Guide.pdf
 
Buds n Tech IT Solutions: Top-Notch Web Services in Noida
Buds n Tech IT Solutions: Top-Notch Web Services in NoidaBuds n Tech IT Solutions: Top-Notch Web Services in Noida
Buds n Tech IT Solutions: Top-Notch Web Services in Noida
 
Software Project Health Check: Best Practices and Techniques for Your Product...
Software Project Health Check: Best Practices and Techniques for Your Product...Software Project Health Check: Best Practices and Techniques for Your Product...
Software Project Health Check: Best Practices and Techniques for Your Product...
 
Ahmed Motair CV April 2024 (Senior SW Developer)
Ahmed Motair CV April 2024 (Senior SW Developer)Ahmed Motair CV April 2024 (Senior SW Developer)
Ahmed Motair CV April 2024 (Senior SW Developer)
 
Alfresco TTL#157 - Troubleshooting Made Easy: Deciphering Alfresco mTLS Confi...
Alfresco TTL#157 - Troubleshooting Made Easy: Deciphering Alfresco mTLS Confi...Alfresco TTL#157 - Troubleshooting Made Easy: Deciphering Alfresco mTLS Confi...
Alfresco TTL#157 - Troubleshooting Made Easy: Deciphering Alfresco mTLS Confi...
 
What is Advanced Excel and what are some best practices for designing and cre...
What is Advanced Excel and what are some best practices for designing and cre...What is Advanced Excel and what are some best practices for designing and cre...
What is Advanced Excel and what are some best practices for designing and cre...
 
Taming Distributed Systems: Key Insights from Wix's Large-Scale Experience - ...
Taming Distributed Systems: Key Insights from Wix's Large-Scale Experience - ...Taming Distributed Systems: Key Insights from Wix's Large-Scale Experience - ...
Taming Distributed Systems: Key Insights from Wix's Large-Scale Experience - ...
 

Shortcuts

  • 1. Highlights of NetBeans IDE 8.0 Keyboard Shortcuts & Code Templates Finding, Searching, and Replacing Ctrl-F3 Search word at insert point F3/Shift-F3 Find next/previous in file Ctrl-F/H Find/Replace in file Alt-F7 Find usages Ctrl-Shift-F/H Find/replace in projects Alt-Shift-U Find usages results Alt-Shift-H Turn off search result highlights Ctrl-R Rename Ctrl-U, then U Convert selection to uppercase Ctrl-U, then L Convert selection to lowercase Ctrl-U, then S Toggle case of selection Ctrl-Shift-V Paste formatted Ctrl-Shift-D Show Clipboard History Ctrl-I Jump to quick search field Alt-Shift-L Copy file path Navigating through Source Code Ctrl-O/Alt-Shift-O Go to type/file Ctrl-Shift-T Go to JUnit test Alt-O Go to source Ctrl-B Go to declaration Ctrl-G Go to line Ctrl-Shift-M Toggle add/remove bookmark Ctrl-Shift-Period / Comma Next/previous bookmark Ctrl-Period / Comma Next/previous usage/compile error Alt-Shift-Period / Comma Select next/previous element Ctrl-Shift-1/2/3 Select in Projects/Files/Favorites Ctrl-[ Move caret to matching bracket Ctrl-K/Ctrl-Shift K Next/previous word match Alt-Left/Alt- Right/Ctrl-Q Go backward/forward/to last edit Alt Up / Down Next/previous marked occurrence Coding in C/C++ Alt-Shift-C Go to declaration Ctrl-F9 Evaluate expression Coding in Java Alt-Insert Generate code Ctrl-Shift-I Fix all class imports Alt-Shift-I Fix selected class's import Alt-Shift-F Format selection Alt-Shift Left/ Right/Up/Down Shift lines left/right/up/down Ctrl-Shift-R Rectangular Selection (Toggle) Ctrl-Shift-Up/D Copy lines up/down Ctrl/Alt-F12 Inspect members/hierarchy Ctrl-Shift-C/ Ctrl-/Add/remove comment lines Ctrl-E Delete current line Compiling, Testing, and Running F9 Compile package/ file F11 Build main project Shift-F11 Clean & build main project Ctrl-Q Set request parameters Ctrl-Shift-U Create Unit test Ctrl-F6/Alt-F6 Run Unit test on file/project F6/Shift-F6 Run main project/file Opening and Toggling between Views Ctrl-Tab (Ctrl-`) Switch between open documents by order used Shift-Escape Maximize window (toggle) Ctrl-F4/Ctrl-W Close selected window Ctrl-Shift-F4 Close all windows Shift-F10 Open contextual menu Ctrl-PgUp / PgDown Switch between open documents by order of tabs Ctrl-Alt-T Reopen recently closed file Ctrl-Alt-PgUp / PgDown Toggle between editor types Alt-Mouse Wheel Up / Down Zoom text in / out Ctrl-Shift-S Toggle Inspect Mode Debugging Ctrl-F5 Start debugging main project Ctrl-Shift-F5 Start debugging current file Ctrl-Shift-F6 Start debugging test for file Shift-F5/F5 Stop/Continue debugging session F4 Run to cursor location in file F7/F8 Step into/over Ctrl-F7 Step out Ctrl-Alt-Up Go to called method Ctrl-Alt-Down Go to calling method Ctrl-F9 Evaluate expression Ctrl-F8 Toggle breakpoint Ctrl-Shift-F8 New breakpoint Ctrl-Shift-F7 New watch When typing in the Source Editor, generate the text in the right-column below by typing the abbreviation that is listed in the left-column and then pressing Tab. Java Editor Code Templates En Enumeration Ex Exception Ob Object Psf public static final Psfb public static final boolean Psfi public static final int Psfs public static final String St String ab abstract
  • 2. Highlights of NetBeans IDE 8.0 Keyboard Shortcuts & Code Templates as assert true; bcom /**/ bo boolean br break; ca catch ( cl class cn continue db double df default: dowhile do { } while (condition); eq equals ex extends fa false fcom // <editor-fold></editor-fold> fi final fl float forc for (Iterator it = collection.iterator(); it.hasNext();) { Object elem = (Object) it.next(); } fore for (Object elem : iterable) { } fori for (int i = 0; i < arr.length; i++) {} forl for (int i = 0; i < lst.size(); i++) { Object object = lst.get(i); } forst for (StringTokenizer st = new StringTokenizer(""); st.hasMoreTokens();) } forv for (int i = 0; i < vct.size(); i++) { Object object = vct.elementAt(i);} fy finally{ |} ie interface ifelse if (condition){}else { } iff if (exp) {} im implements inst if (exp instanceof Object) { Object obj = (Object) exp; iof instanceof ir import le length na native newo Object name = new Object(args); pe protected pr private psf private static final psfb private static final boolean psfi private static final int psfs private static final String pst printStackTrace(); psvm public static void main(String[] args){ } pu public re return runn Runnable runnable = new Runnable() { public void run() {}}; serr System.err.println ("|"); sh short sout System.out.println ("|"); soutv System.out.println("Object = " + Object); st static su super sw switch (var) { case val: break; default: throw new AssertionError();} sy synchronized tds Thread.dumpStack(); th throws tr transient trycatch try {} catch (Exception e) {} tw throw vo volatile wh while ( whileit while (it.hasNext()) { Object elem = (Object) it.next();} whilen while (en.hasMoreElements()) { Object elem = (Object) en.nextElement();} whilexp while (exp) {} JSP Editor Code Templates al window.alert(${message}); br ${no-indent}break; ca ${no-indent}case catch catch (${exception}) { ${cursor} } cond window.console.debug(${debug}); coni window.console.info(${info}); conl window.console.log(${log}); conw window.console.warn(${warn}); ct ${no-indent}catch do ${no-indent}document dw document.write(${message}); else Else { ${cursor} } eq ${no-indent}equals fa ${no-indent}false forin for (var ${item} in ${object}) { ${selection}${cursor} } fun function ${name}(${parameters}) { ${selection}${cursor} } hi ${no-indent}window.history if if (${expr}) { ${selection}${cursor} } iof ${no-indent}instanceof json {"${field}": "${value}"} lo ${no-indent}window.location new ${no-indent}var ${name} = new ${type}($ {arguments}); prf ${propertyName}: function(${parameters}) { ${cursor} }, re ${no-indent}return var ${no-indent}var ${name} = ${value}; win ${no-indent}window